mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
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:
commit
c43dff3046
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user