diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/spack/spack/util/gpg.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/spack/spack/util/gpg.py b/lib/spack/spack/util/gpg.py index ddc69c9579..87059d7d34 100644 --- a/lib/spack/spack/util/gpg.py +++ b/lib/spack/spack/util/gpg.py @@ -344,7 +344,7 @@ def _gpgconf(): # ensure that the gpgconf we found can run "gpgconf --create-socketdir" try: - exe('--dry-run', '--create-socketdir') + exe('--dry-run', '--create-socketdir', output=os.devnull, error=os.devnull) except spack.util.executable.ProcessError: # no dice exe = None |