forked from public/airgap
RELEASE_DIR -> DIST_DIR
This commit is contained in:
parent
a37d0d9cd6
commit
1c6242d787
10
Makefile
10
Makefile
|
@ -30,15 +30,15 @@ sign:
|
|||
); \
|
||||
gpg --armor \
|
||||
--detach-sig \
|
||||
--output $(RELEASE_DIR)/manifest.$${fingerprint}.asc \
|
||||
$(RELEASE_DIR)/manifest.txt
|
||||
--output $(DIST_DIR)/manifest.$${fingerprint}.asc \
|
||||
$(DIST_DIR)/manifest.txt
|
||||
|
||||
.PHONY: verify
|
||||
verify: | $(RELEASE_DIR)/manifest.txt
|
||||
verify: | $(DIST_DIR)/manifest.txt
|
||||
set -e; \
|
||||
for file in $(RELEASE_DIR)/manifest.*.asc; do \
|
||||
for file in $(DIST_DIR)/manifest.*.asc; do \
|
||||
echo "\nVerifying: $${file}\n"; \
|
||||
gpg --verify $${file} $(RELEASE_DIR)/manifest.txt; \
|
||||
gpg --verify $${file} $(DIST_DIR)/manifest.txt; \
|
||||
done;
|
||||
|
||||
.PHONY: mrproper
|
||||
|
|
Loading…
Reference in New Issue