allow GNUPGHOME to come from SPACK_GNUPGHOME in env, if set (#17139)
This commit is contained in:
parent
e4ba1c1daf
commit
96fa6f0c1b
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
|
||||
_gnupg_version_re = r"^gpg \(GnuPG\) (.*)$"
|
||||
|
||||
GNUPGHOME = spack.paths.gpg_path
|
||||
GNUPGHOME = os.getenv('SPACK_GNUPGHOME', spack.paths.gpg_path)
|
||||
|
||||
|
||||
def parse_keys_output(output):
|
||||
|
|
Loading…
Reference in a new issue