apl: make keyring generation output keys as binary again
sequioa dropped the `--binary` flag for keyring generation and only
outputs ascii armored keyrings. so make it dearmor the key afterward
to keep the key format consistent with the file ending (".gpg") again.
Signed-off-by: Shannon Sterz <s.sterz@proxmox.com>
Link: https://lore.proxmox.com/20250722123658.196232-2-s.sterz@proxmox.com
This commit is contained in:
parent
15a67b13e7
commit
5034a93f6d
1 changed files with 3 additions and 1 deletions
|
|
@ -20,7 +20,9 @@ update:
|
|||
mv aplinfo.dat.tmp aplinfo.dat
|
||||
|
||||
trustedkeys.gpg: $(TRUSTED_KEYS)
|
||||
sq keyring merge --output $@.tmp $(TRUSTED_KEYS)
|
||||
sq keyring merge --output $(basename $@).asc.tmp $(TRUSTED_KEYS)
|
||||
sq packet dearmor $(basename $@).asc.tmp --output $@.tmp
|
||||
rm $(basename $@).asc.tmp
|
||||
mv $@.tmp $@
|
||||
|
||||
.PHONY: clean
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue