From 28f390c540e23a7c3a45bfb5882bc2dc092f7ce5 Mon Sep 17 00:00:00 2001 From: Pascal Hartig Date: Thu, 27 Sep 2018 05:34:46 -0700 Subject: [PATCH] Increase verbosity (#282) Summary: Apparently, `--quiet` is *too* quiet on "dumb" terminals, staying quiet for longer than 10 minutes on Circle CI, causing the jobs to fail. Pull Request resolved: https://github.com/facebook/flipper/pull/282 Reviewed By: jknoxville Differential Revision: D10083183 Pulled By: passy fbshipit-source-id: 6d006ab8aa2954d72d545bcef5d9e2d863a9f6a3 --- scripts/publish-android-release.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/publish-android-release.sh b/scripts/publish-android-release.sh index 870d2d75d..7d590f2f0 100755 --- a/scripts/publish-android-release.sh +++ b/scripts/publish-android-release.sh @@ -12,5 +12,5 @@ elif [ "$IS_SNAPSHOT" != "" ]; then exit 1 else openssl aes-256-cbc -d -in scripts/bintray-publish-keys.enc -k "$ANDROID_PUBLISH_KEY" >> "$BASEDIR/gradle.properties" - "$BASEDIR"/gradlew bintrayUpload --quiet -PdryRun=false + "$BASEDIR"/gradlew bintrayUpload -PdryRun=false fi