diff options
author | Rob Austein <sra@hactrn.net> | 2016-06-22 13:16:01 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2016-06-22 13:16:01 -0400 |
commit | 26fc6e2552488acba023b8f4c8c1670dbe328b0f (patch) | |
tree | e05fca83bbb5d6d2872207113484b9ddf41cec1f | |
parent | 1f4cb928a0ac606167d7df6f0435e9ad0ef95b30 (diff) |
Fix script permission, and suppress gpg warning that doesn't really apply to dedicated build machine.
-rwxr-xr-x[-rw-r--r--] | build-package.py | 2 |
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() |