1
0
Fork 0

tools/secretstore: fix decryption of updated secrets

master
q3k 2019-04-28 17:13:12 +02:00
parent 4232c8b733
commit a9bb1d5b5b
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ def encrypt(src, dst):
subprocess.check_call(cmd)
def decrypt(src, dst):
cmd = ['gpg', '--decrypt', '--output', dst, src]
cmd = ['gpg', '--decrypt', '--batch', '--yes', '--output', dst, src]
subprocess.check_call(cmd)