mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 13:43:04 -05:00
fix error when no private key is available
This commit is contained in:
parent
383ca8dd64
commit
4f47b9782f
1 changed files with 1 additions and 2 deletions
3
Makefile
3
Makefile
|
@ -90,8 +90,7 @@ $(lw_source_tarball) : $(lw_source_dir)
|
|||
sha256sum $(lw_source_tarball) > $(lw_source_tarball).sha256sum
|
||||
cat $(lw_source_tarball).sha256sum
|
||||
[ "$(SIGNING_KEY)" != "" ] && cp -v $(SIGNING_KEY) pk.asc ; true
|
||||
if [ -f pk.asc ]; then gpg --import pk.asc; gpg --detach-sign $(lw_source_tarball); fi
|
||||
ls -lh $(lw_source_tarball).sig
|
||||
if [ -f pk.asc ]; then gpg --import pk.asc; gpg --detach-sign $(lw_source_tarball) && ls -lh $(lw_source_tarball).sig; fi
|
||||
|
||||
|
||||
debs=python3 python3-dev python3-pip
|
||||
|
|
Loading…
Reference in a new issue