Skip to content

Commit

Permalink
Merge pull request kubernetes#637 from kelseyhightower/fix-build-go
Browse files Browse the repository at this point in the history
Fix hack/build-go.sh to work on all platforms
  • Loading branch information
lavalamp committed Jul 26, 2014
2 parents 57b583e + 124b0e7 commit d102b9c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hack/build-go.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,7 @@ if [ $# -gt 0 ]; then
BINARIES="$@"
fi

go build $(for b in $BINARIES; do echo "${KUBE_GO_PACKAGE}"/${b}; done)
for b in ${BINARIES}; do
echo "+++ Building ${b}"
go build "${KUBE_GO_PACKAGE}/${b}"
done

0 comments on commit d102b9c

Please sign in to comment.