diff options
author | Rob Austein <sra@hactrn.net> | 2020-06-21 15:48:28 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2020-06-21 15:48:28 -0400 |
commit | 37329250395aa3ac724fca99bbd2de01efea10e1 (patch) | |
tree | 417a662eef2a1af9ab641b633f571a23c6e2d835 | |
parent | 23eac4f149edc62bb7ccc36db623f9301e2d2fda (diff) |
Typo in updated build script
-rwxr-xr-x | scripts/build-firmware-package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/build-firmware-package.py b/scripts/build-firmware-package.py index 55e77a7..9a58970 100755 --- a/scripts/build-firmware-package.py +++ b/scripts/build-firmware-package.py @@ -31,7 +31,7 @@ with tempfile.NamedTemporaryFile() as f: if use_gpg: gpg = subprocess.Popen(("gpg", "--clearsign", "--personal-digest-preferences", "SHA256", "--no-permission-warning"), stdin = subprocess.PIPE, stdout = f) - jf = gnupg.stdin + jf = gpg.stdin else: jf = f json.dump(dict(head = head, time = time, commits = commits, sha256 = sha256), jf, indent = 2) |