duh, don't change stuff right before commit without testing again (#2342)

This commit is contained in:
Mike Gray
2016-08-11 11:14:21 -04:00
committed by GitHub
parent f9b818bb34
commit 8c02c5da46

View File

@@ -57,16 +57,16 @@ echoBuildEnv () {
# remove previous build if present
rm -rf $GOOS-$GOARCH.tar.gz
echobuildenv
echoBuildEnv
# run tests, only build binaries if test succeeds
gotest
goTest
# perform the actual builds
binaries=""
for bin in "${BINARIES_TO_BUILD[@]}"
do
gobuild $bin
goBuild $bin
binaries+=" "
binaries+=`basename $bin`
done