Fix error when checking for dry run flag

Change-Id: Ic8367197da753ff2316204ec76423481d447ec82
This commit is contained in:
Ray Milkey 2017-07-28 12:52:09 -07:00
parent 8953445c86
commit 09e8b8d776

View File

@ -44,7 +44,7 @@ pushd $ZIP_STAGE
zip -r ../$BUCK_ZIP buck .buck_version plugins zip -r ../$BUCK_ZIP buck .buck_version plugins
popd #$ZIP_STAGE popd #$ZIP_STAGE
if [ "$1" -ne "--dry-run" ]; then if [ "$1" != "--dry-run" ]; then
# publish zip # publish zip
#FIXME check for s3 credentials #FIXME check for s3 credentials
uploadToS3.py --dest third-party/ $BUCK_ZIP uploadToS3.py --dest third-party/ $BUCK_ZIP