Skip to content

Commit

Permalink
PRODENG-2808 fix checksum (#528)
Browse files Browse the repository at this point in the history
- small change to checksum builds to fix path

Signed-off-by: James Nesbitt <[email protected]>
  • Loading branch information
james-nesbitt authored Dec 4, 2024
1 parent dda3317 commit 79f17f5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ $(RELEASE_FOLDER):

.PHONY: create-checksum
create-checksum:
for f in $(RELEASE_FOLDER)/*; do \
cd $(RELEASE_FOLDER) && \
for f in *; do \
$(CHECKSUM) $$f > $$f.sha256; \
done

Expand Down

0 comments on commit 79f17f5

Please sign in to comment.