aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x[-rw-r--r--]build-package.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-package.py b/build-package.py
index 494011e..17932a3 100644..100755
--- a/build-package.py
+++ b/build-package.py
@@ -25,7 +25,7 @@ for fn in args.firmware:
tar.add(fn, os.path.basename(fn))
with tempfile.NamedTemporaryFile() as f:
- gpg = subprocess.Popen(("gpg", "--clearsign", "--personal-digest-preferences", "SHA256"),
+ gpg = subprocess.Popen(("gpg", "--clearsign", "--personal-digest-preferences", "SHA256", "--no-permission-warning"),
stdin = subprocess.PIPE, stdout = f)
json.dump(dict(head = head, time = time, commits = commits, sha256 = sha256), gpg.stdin, indent = 2)
gpg.stdin.close()