diff options
author | Brian Van Essen <vanessen1@llnl.gov> | 2020-11-19 09:58:25 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-19 11:58:25 -0600 |
commit | 50156355060fa972626e9a9b3dbe2017d268a8e2 (patch) | |
tree | 8591ca57de651bbcc4ede52155d561af9207a790 | |
parent | c41782795433cc3241d9a6038c68bcadbb12b838 (diff) | |
download | spack-50156355060fa972626e9a9b3dbe2017d268a8e2.tar.gz spack-50156355060fa972626e9a9b3dbe2017d268a8e2.tar.bz2 spack-50156355060fa972626e9a9b3dbe2017d268a8e2.tar.xz spack-50156355060fa972626e9a9b3dbe2017d268a8e2.zip |
Removed accidental command to not expand the tarball. (#20001)
-rw-r--r-- | var/spack/repos/builtin/packages/cudnn/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/var/spack/repos/builtin/packages/cudnn/package.py b/var/spack/repos/builtin/packages/cudnn/package.py index cb3bbda157..f8496de745 100644 --- a/var/spack/repos/builtin/packages/cudnn/package.py +++ b/var/spack/repos/builtin/packages/cudnn/package.py @@ -159,7 +159,7 @@ class Cudnn(Package): cudnn_ver, cuda_ver = ver.split('-') long_ver = "{0}-{1}".format(cudnn_ver, cuda_ver) if pkg: - version(long_ver, sha256=pkg, expand=False) + version(long_ver, sha256=pkg) # Add constraints matching CUDA version to cuDNN version cuda_req = 'cuda@{0}.0:{0}.999'.format(cuda_ver) cudnn_ver_req = '@{0}'.format(long_ver) |