Skip to content

Commit

Permalink
fix Makefile (#162)
Browse files Browse the repository at this point in the history
  • Loading branch information
kcajmagic authored Aug 29, 2019
1 parent d5ba368 commit ed6092c
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 @@ -54,8 +54,8 @@ install: go-mod-vendor
.PHONY: release-artifacts
release-artifacts: go-mod-vendor
mkdir -p ./.ignore
GOOS=darwin GOARCH=amd64 $(GO) build -o ./ignore/$(APP)-$(PROGVER).darwin-amd64
GOOS=linux GOARCH=amd64 $(GO) build -o ./ignore/$(APP)-$(PROGVER).linux-amd64
GOOS=darwin GOARCH=amd64 $(GO) build -o ./.ignore/$(APP)-$(PROGVER).darwin-amd64
GOOS=linux GOARCH=amd64 $(GO) build -o ./.ignore/$(APP)-$(PROGVER).linux-amd64

.PHONY: docker
docker:
Expand Down

0 comments on commit ed6092c

Please sign in to comment.