diff options
author | Adam J. Stewart <ajstewart426@gmail.com> | 2019-11-01 17:40:49 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-01 17:40:49 -0500 |
commit | a8228e1aec259af137e6ab59f5e6df4cf454d0f5 (patch) | |
tree | 305ba56f757d49c6f268c6f3f34ae6857aa25889 /lib | |
parent | 2e029fc2e5fe58a1fb627e4856ab99a2abe17107 (diff) | |
download | spack-a8228e1aec259af137e6ab59f5e6df4cf454d0f5.tar.gz spack-a8228e1aec259af137e6ab59f5e6df4cf454d0f5.tar.bz2 spack-a8228e1aec259af137e6ab59f5e6df4cf454d0f5.tar.xz spack-a8228e1aec259af137e6ab59f5e6df4cf454d0f5.zip |
spack create: http -> https (#13547)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/cmd/create.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/spack/spack/cmd/create.py b/lib/spack/spack/cmd/create.py index 6c68617acd..e66be93bdc 100644 --- a/lib/spack/spack/cmd/create.py +++ b/lib/spack/spack/cmd/create.py @@ -454,7 +454,7 @@ class BuildSystemGuesser: the contents of its archive or the URL it was downloaded from.""" # Most octave extensions are hosted on Octave-Forge: - # http://octave.sourceforge.net/index.html + # https://octave.sourceforge.net/index.html # They all have the same base URL. if url is not None and 'downloads.sourceforge.net/octave/' in url: self.build_system = 'octave' @@ -567,7 +567,7 @@ def get_url(args): """ # Default URL - url = 'http://www.example.com/example-1.2.3.tar.gz' + url = 'https://www.example.com/example-1.2.3.tar.gz' if args.url: # Use a user-supplied URL if one is present |