Fix build during release

This commit is contained in:
Lars Wander 2018-07-02 11:30:06 -04:00 committed by Dave Cunningham
parent e01563f538
commit 43294caaef

View File

@ -27,6 +27,8 @@ if [ -z "$GCS_BUCKET_PATH" ]; then
GCS_BUCKET_PATH="gs://jsonnet" GCS_BUCKET_PATH="gs://jsonnet"
fi fi
pushd jsonnet
for elem in darwin,amd64 linux,amd64; do for elem in darwin,amd64 linux,amd64; do
IFS="," read os arch <<< "${elem}" IFS="," read os arch <<< "${elem}"
echo "Building for $os $arch" echo "Building for $os $arch"
@ -41,3 +43,5 @@ done
echo $VERSION > latest echo $VERSION > latest
gsutil cp latest ${GCS_BUCKET_PATH}/ gsutil cp latest ${GCS_BUCKET_PATH}/
popd