Removed accidental command to not expand the tarball. (#20001)

This commit is contained in:
Brian Van Essen 2020-11-19 09:58:25 -08:00 committed by GitHub
parent c417827954
commit 5015635506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)