Skip to content

Commit

Permalink
Update openssl command in the Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Rafe Colton committed Nov 1, 2017
1 parent 3689d9a commit 88d22cf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ release: binclean gox-build
.PHONY: gox-build
gox-build: $(GOPATH)/bin/gox
CGO_ENABLED=0 $(GOPATH)/bin/gox -output="_release/docker-builder-$(REPO_VERSION)-{{ .OS }}-{{ .Arch }}" -osarch="darwin/amd64 linux/amd64" $(GOBUILD_VERSION_ARGS) $(GO_TAG_ARGS) $(B)
for file in $$(find ./_release -type f -name 'docker-builder-*') ; do openssl sha256 -out $$file-SHA256SUM $$file ; done
for file in $$(find ./_release -type f -name 'docker-builder-*') ; do openssl dgst -sha256 -out $$file-SHA256SUM $$file ; done

.PHONY: .test
.test: fmtpolice bats
Expand Down

0 comments on commit 88d22cf

Please sign in to comment.