diff options
author | Michael Kuhn <suraia@ikkoku.de> | 2017-03-31 20:41:08 +0200 |
---|---|---|
committer | Adam J. Stewart <ajstewart426@gmail.com> | 2017-03-31 13:41:08 -0500 |
commit | 0d421137f4db203250428c36518a69dec312a2ea (patch) | |
tree | a5231b98051809b1d7ff575443d745a55706022e /lib | |
parent | 343f3b2fde46f2de34f16ed1cacbd7455b4a8498 (diff) | |
download | spack-0d421137f4db203250428c36518a69dec312a2ea.tar.gz spack-0d421137f4db203250428c36518a69dec312a2ea.tar.bz2 spack-0d421137f4db203250428c36518a69dec312a2ea.tar.xz spack-0d421137f4db203250428c36518a69dec312a2ea.zip |
Fix mxml (#3639)
mxml is now hosted on GitHub.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/url.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/spack/spack/url.py b/lib/spack/spack/url.py index 65f8e12e58..89f4a16dfc 100644 --- a/lib/spack/spack/url.py +++ b/lib/spack/spack/url.py @@ -370,6 +370,7 @@ def parse_name_offset(path, v=None): (r'/([^/]+)/(tarball|zipball)/', path), (r'/([^/]+)[_.-](bin|dist|stable|src|sources)[_.-]%s' % v, path), (r'github.com/[^/]+/([^/]+)/archive', path), + (r'github.com/[^/]+/([^/]+)/releases', path), (r'[^/]+/([^/]+)/repository/archive', path), # gitlab (r'([^/]+)/download.php', path), |