Skip to content

Commit

Permalink
switch from shasum -p to --UNIVERSAL in makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
tavisrudd committed Sep 29, 2021
1 parent 45883fa commit 42dd544
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ package: $(RELEASE_PACKAGES)
@git diff --quiet --ignore-submodules HEAD || echo -e '\x1b[0;31mWARNING: git workding dir not clean\x1b[0m'
@echo
@ls -alh dist/*zip
@shasum -a 256 dist/* || true
@shasum --UNIVERSAL -a 256 dist/* || true
@echo
@echo open dist/

Expand Down Expand Up @@ -91,7 +91,7 @@ $(RELEASE_PACKAGES) : $(BUILD_ARTIFACTS)
for OS in linux macos; do \
cp iidy-$$OS iidy; \
zip iidy-$${OS}-amd64.zip iidy;\
shasum -p -a 256 iidy-$${OS}-amd64.zip; \
shasum --UNIVERSAL -a 256 iidy-$${OS}-amd64.zip; \
done
rm -f dist/iidy

Expand Down

0 comments on commit 42dd544

Please sign in to comment.