[Cryptech-Commits] [user/sra/alpha-releng/omnibus] 05/24: Fix script permission, and suppress gpg warning that doesn't really apply to dedicated build machine.

git at cryptech.is git at cryptech.is
Mon Jun 27 20:38:28 UTC 2016


This is an automated email from the git hooks/post-receive script.

sra at hactrn.net pushed a commit to branch master
in repository user/sra/alpha-releng/omnibus.

commit 26fc6e2552488acba023b8f4c8c1670dbe328b0f
Author: Rob Austein <sra at hactrn.net>
AuthorDate: Wed Jun 22 13:16:01 2016 -0400

    Fix script permission, and suppress gpg warning that doesn't really apply to dedicated build machine.
---
 build-package.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build-package.py b/build-package.py
old mode 100644
new mode 100755
index 494011e..17932a3
--- 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()



More information about the Commits mailing list