diff options
author | Wouter Deconinck <wdconinc@gmail.com> | 2024-09-22 06:54:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-22 13:54:10 +0200 |
commit | 87d389fe78232ee38f2387ccfb6f6d480e787281 (patch) | |
tree | 7605e11708d5f56d3c99205edeeccffa0a12be2d | |
parent | 27c590d2dc9d1eac8cd6347326177f4ceedd5099 (diff) | |
download | spack-87d389fe78232ee38f2387ccfb6f6d480e787281.tar.gz spack-87d389fe78232ee38f2387ccfb6f6d480e787281.tar.bz2 spack-87d389fe78232ee38f2387ccfb6f6d480e787281.tar.xz spack-87d389fe78232ee38f2387ccfb6f6d480e787281.zip |
shc: fix url (#46517)
-rw-r--r-- | var/spack/repos/builtin/packages/shc/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/shc/package.py b/var/spack/repos/builtin/packages/shc/package.py index 5ff617eebc..4338930e42 100644 --- a/var/spack/repos/builtin/packages/shc/package.py +++ b/var/spack/repos/builtin/packages/shc/package.py @@ -13,7 +13,7 @@ class Shc(AutotoolsPackage): and linked to produce a stripped binary executable.""" homepage = "https://neurobin.org/projects/softwares/unix/shc/" - url = "https://github.com/neurobin/shc/archive/4.0.3.tar.gz" + url = "https://github.com/neurobin/shc/archive/refs/tags/4.0.3.tar.gz" license("GPL-3.0-or-later") |