File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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 \
You can’t perform that action at this time.
0 commit comments