diff options
author | John W. Parent <45471568+johnwparent@users.noreply.github.com> | 2022-03-28 17:13:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-28 14:13:55 -0700 |
commit | 1c2fff2cb72f7e32287f03ecbed6e918c674329b (patch) | |
tree | d3a06acd08e70a1c1f8f24566e0d0ff68ee2b045 /lib | |
parent | 5424e4bdc112ec9d20e902f6d5effc97e11587c1 (diff) | |
download | spack-1c2fff2cb72f7e32287f03ecbed6e918c674329b.tar.gz spack-1c2fff2cb72f7e32287f03ecbed6e918c674329b.tar.bz2 spack-1c2fff2cb72f7e32287f03ecbed6e918c674329b.tar.xz spack-1c2fff2cb72f7e32287f03ecbed6e918c674329b.zip |
Add ssh to filter of valid urls (#29749)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/util/url.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/util/url.py b/lib/spack/spack/util/url.py index 4d511c29d2..81443aed5c 100644 --- a/lib/spack/spack/util/url.py +++ b/lib/spack/spack/util/url.py @@ -343,7 +343,7 @@ def parse_git_url(url): def require_url_format(url): - ut = re.search(r'^(file://|http://|https://|ftp://|s3://|gs://|/)', url) + ut = re.search(r'^(file://|http://|https://|ftp://|s3://|gs://|ssh://|/)', url) assert ut is not None |