Merge pull request #2253 from chinmaygarde/master

Dont fail the build when trying to detect if the archive can be uploaded
This commit is contained in:
Chinmay Garde 2016-01-12 15:10:10 -08:00
commit c43dff3046

View File

@ -73,7 +73,9 @@ zip -r FlutterXcode.zip Flutter
# Upload generated assets if the key to the service account is available
if [[ ! -z ${BUCKET_KEY_FILE} ]]; then
set +e
GCLOUD_CMD="$(command -v gcloud)"
set -e
if [[ -z GCLOUD_CMD ]]; then
CLOUDSDK_CORE_DISABLE_PROMPTS=1
curl https://sdk.cloud.google.com | bash