From 349399f46bc31783fcf771c03e5856365e511dd7 Mon Sep 17 00:00:00 2001 From: "Lance R. Vick" Date: Fri, 24 Jul 2020 18:00:07 -0700 Subject: [PATCH] fix verify hash path --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index e7ba965..a955fbc 100644 --- a/Makefile +++ b/Makefile @@ -85,12 +85,12 @@ hash: .PHONY: verify verify: - mkdir -p build/verify/$(VERSION) + mkdir -p build/audit/$(VERSION) openssl sha256 -r $(RELEASE_DIR)/*.rom \ - > build/stats/$(VERSION)/release_hashes.txt + > build/audit/$(VERSION)/release_hashes.txt openssl sha256 -r $(RELEASE_DIR)/*.iso \ - >> build/stats/$(VERSION)/release_hashes.txt - diff -q build/stats/$(VERSION)/release_hashes.txt $(RELEASE_DIR)/hashes.txt; + >> build/audit/$(VERSION)/release_hashes.txt + diff -q build/audit/$(VERSION)/release_hashes.txt $(RELEASE_DIR)/hashes.txt; .PHONY: sign sign: $(RELEASE_DIR)/*.rom $(RELEASE_DIR)/*.iso