Skip to content

Commit

Permalink
make: adjust dist target to exclude darwin/386
Browse files Browse the repository at this point in the history
  • Loading branch information
yields committed Sep 3, 2020
1 parent f464355 commit 0335e04
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ test:
@go test -cover ./...

dist:
@gox -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"
@gox \
--osarch "!darwin/386" \
--output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"

clean:
rm -fr dist

0 comments on commit 0335e04

Please sign in to comment.