Skip to content
This repository was archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
n0rad committed Aug 3, 2015
1 parent 6133f01 commit a1e80e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ dir=$( dirname $0 )

rm -Rf ${dir}/target/

GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build -o target/darwin-amd64/cnt&
GOOS=windows GOARCH=amd64 CGO_ENABLED=0 go build -o target/windows-amd64/cnt.exe
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o target/linux-amd64/cnt
GOOS=darwin GOARCH=amd64 go build -o target/darwin-amd64/cnt&
GOOS=windows GOARCH=amd64 go build -o target/windows-amd64/cnt.exe
GOOS=linux GOARCH=amd64 go build -o target/linux-amd64/cnt

0 comments on commit a1e80e8

Please sign in to comment.