Skip to content

Commit

Permalink
Merge pull request grafana#29 from grafana/fix-cross-target
Browse files Browse the repository at this point in the history
Fix binary name in cross target
  • Loading branch information
malcolmholmes authored Jul 31, 2020
2 parents 83719b0 + 3186ac8 commit 6b18bee
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 @@ -27,7 +27,7 @@ uninstall:
$(GOX):
go get -u github.com/mitchellh/gox
cross: $(GOX)
CGO_ENABLED=0 gox -output="dist/{{.Dir}}-{{.OS}}-{{.Arch}}" -ldflags=${LDFLAGS} -arch="amd64 arm64 arm" -os="linux" -osarch="darwin/amd64" ./cmd/g
CGO_ENABLED=0 gox -output="dist/{{.Dir}}-{{.OS}}-{{.Arch}}" -ldflags=${LDFLAGS} -arch="amd64 arm64 arm" -os="linux" -osarch="darwin/amd64" ./cmd/grr

# Docker container
container: static
Expand Down

0 comments on commit 6b18bee

Please sign in to comment.