Skip to content

Commit 811a219

Browse files
authored
Merge pull request #402 from ianlewis/fixes
fix: small issues in Makefile
2 parents eeca039 + 099524a commit 811a219

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ node_modules/.installed: package-lock.json
145145
mkdir -p .bin/aqua-$(AQUA_VERSION); \
146146
tempfile=$$($(MKTEMP) --suffix=".aqua-$(AQUA_VERSION).tar.gz"); \
147147
curl -sSLo "$${tempfile}" "$(AQUA_URL)"; \
148-
echo "$(AQUA_CHECKSUM) $${tempfile}" | sha256sum -c -; \
148+
echo "$(AQUA_CHECKSUM) $${tempfile}" | shasum -a 256 -c -; \
149149
tar -x -C .bin/aqua-$(AQUA_VERSION) -f "$${tempfile}"
150150

151151
$(AQUA_ROOT_DIR)/.installed: .aqua.yaml .bin/aqua-$(AQUA_VERSION)/aqua
@@ -230,6 +230,7 @@ license-headers: ## Update license headers.
230230
>&2 echo "git user.name is required."; \
231231
>&2 echo "Set it up using:"; \
232232
>&2 echo "git config user.name \"John Doe\""; \
233+
exit 1; \
233234
fi; \
234235
for filename in $${files}; do \
235236
if ! ( head "$${filename}" | $(GREP) -iL "Copyright" > /dev/null ); then \

0 commit comments

Comments
 (0)