Skip to content

Commit

Permalink
update docs: fix gpg issues on windows
Browse files Browse the repository at this point in the history
this commit updates our documentation such that, when signing text files, we use the '--textmode' argument. This ensures that the signatures will still be valid on dumb systems (cough Windows cough) that insert additional carriage return characters before our newline characters.

 * #78 (comment)
 * BusKill/buskill-app-deps@63ccc12
  • Loading branch information
maltfield committed Jun 6, 2024
1 parent ea344cd commit 30fd835
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/software_dev/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ After verifying the reproducibility of the Linux build, download the Windows and
user@vault:~$ sha256sum * > SHA256SUMS
user@vault:~$

user@vault:~$ gpg --default-key 'E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A' --armor -b SHA256SUMS
user@vault:~$ gpg --default-key 'E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A' --textmode --armor -b SHA256SUMS
gpg: using "E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A" as default secret key for signing
user@vault:~$

Expand Down Expand Up @@ -360,7 +360,7 @@ After updating the ``meta.json`` file, copy it to your airgapped machine and sig

::

user@vault:~$ gpg --default-key 'E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A' --armor -b meta.json
user@vault:~$ gpg --default-key 'E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A' --textmode --armor -b meta.json
gpg: using "E0AF FF57 DC00 FBE0 5635 8761 4AE2 1E19 36CE 786A" as default secret key for signing
user@vault:~$

Expand Down

0 comments on commit 30fd835

Please sign in to comment.