[Cryptech-Commits] [user/sra/alpha-releng/firmware] branch master updated: Fix script permission, and suppress gpg warning that doesn't really apply to dedicated build machine.
git at cryptech.is
git at cryptech.is
Wed Jun 22 17:18: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/firmware.
The following commit(s) were added to refs/heads/master by this push:
new 26fc6e2 Fix script permission, and suppress gpg warning that doesn't really apply to dedicated build machine.
26fc6e2 is described below
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()
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Commits
mailing list