Skip to content

Commit

Permalink
remove bash requirement in makefile (go-gitea#6617)
Browse files Browse the repository at this point in the history
  • Loading branch information
techknowlogick authored Apr 14, 2019
1 parent de6527b commit 77ffb15
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ export GO111MODULE=off

GO ?= go
SED_INPLACE := sed -i
SHELL ?= bash
SHASUM ?= shasum -a 256

export PATH := $($(GO) env GOPATH)/bin:$(PATH)
Expand Down Expand Up @@ -363,7 +362,7 @@ release-copy:

.PHONY: release-check
release-check:
cd $(DIST)/release/; for file in `find . -type f -name "*"`; do $(SHASUM) $${file:2} > $${file}.sha256; done;
cd $(DIST)/release/; for file in `find . -type f -name "*"`; do echo "checksumming $${file}" && $(SHASUM) `echo $${file} | sed 's/^..//'` > $${file}.sha256; done;

.PHONY: release-compress
release-compress:
Expand Down

0 comments on commit 77ffb15

Please sign in to comment.