Skip to content
Snippets Groups Projects
Commit ed39ae75 authored by Yann Leboulanger's avatar Yann Leboulanger
Browse files

do not create null file when testing gpg. see #6953

parent 195d0121
No related branches found
No related tags found
No related merge requests found
......@@ -158,7 +158,7 @@ except ImportError:
else:
import os
if os.name == 'nt':
gpg_cmd = 'gpg -h >null 2>&1'
gpg_cmd = 'gpg -h >nul 2>&1'
else:
gpg_cmd = 'gpg -h >/dev/null 2>&1'
if os.system(gpg_cmd):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment