Add --batch in batch mode (fixes #519)

This commit is contained in:
Andrey Smirnov
2017-07-14 23:16:44 +03:00
parent 84a6d573f8
commit 5e9515a912
+1 -1
View File
@@ -72,7 +72,7 @@ func (g *GpgSigner) gpgArgs() []string {
}
if g.batch {
args = append(args, "--no-tty")
args = append(args, "--no-tty", "--batch")
}
return args