forked from public/airgap
1
0
Fork 0

RELEASE_DIR -> DIST_DIR

This commit is contained in:
Lance Vick 2023-02-13 04:01:16 -08:00
parent a37d0d9cd6
commit 1c6242d787
Signed by: lrvick
GPG Key ID: 8E47A1EC35A1551D
1 changed files with 5 additions and 5 deletions

View File

@ -30,15 +30,15 @@ sign:
); \ ); \
gpg --armor \ gpg --armor \
--detach-sig \ --detach-sig \
--output $(RELEASE_DIR)/manifest.$${fingerprint}.asc \ --output $(DIST_DIR)/manifest.$${fingerprint}.asc \
$(RELEASE_DIR)/manifest.txt $(DIST_DIR)/manifest.txt
.PHONY: verify .PHONY: verify
verify: | $(RELEASE_DIR)/manifest.txt verify: | $(DIST_DIR)/manifest.txt
set -e; \ set -e; \
for file in $(RELEASE_DIR)/manifest.*.asc; do \ for file in $(DIST_DIR)/manifest.*.asc; do \
echo "\nVerifying: $${file}\n"; \ echo "\nVerifying: $${file}\n"; \
gpg --verify $${file} $(RELEASE_DIR)/manifest.txt; \ gpg --verify $${file} $(DIST_DIR)/manifest.txt; \
done; done;
.PHONY: mrproper .PHONY: mrproper