Skip to content

Commit

Permalink
explicitly set list OSs that we build binaries for
Browse files Browse the repository at this point in the history
  • Loading branch information
oliver006 committed May 9, 2019
1 parent 660be8d commit 42235be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-github-binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ if [[ -f 'go.mod' ]] ; then
go mod tidy
fi

gox -verbose -arch="386 amd64" -rebuild -ldflags "${GO_LDFLAGS}" -output '.build/{{.OS}}-{{.Arch}}/{{.Dir}}'
gox -verbose -os="darwin linux freebsd windows netbsd" -arch="386 amd64" -rebuild -ldflags "${GO_LDFLAGS}" -output '.build/{{.OS}}-{{.Arch}}/{{.Dir}}'

mkdir -p dist
for build in $(ls .build); do
Expand Down

0 comments on commit 42235be

Please sign in to comment.