diff --git a/tools/cordova-scripts/ensure_android_bundle.sh b/tools/cordova-scripts/ensure_android_bundle.sh index 31bbfd6df2..ba198142cb 100755 --- a/tools/cordova-scripts/ensure_android_bundle.sh +++ b/tools/cordova-scripts/ensure_android_bundle.sh @@ -40,7 +40,7 @@ install_android_bundle () { echo "Skipping download and installing kit from $DEST_DIR/$TARBALL" >&2 tar -xzf "$DEST_DIR/$TARBALL" -C "$BUNDLE_TMPDIR" else - curl "$ANDROID_BUNDLE_URL_ROOT$TARBALL" | tar -xzf - -C "$BUNDLE_TMPDIR" + curl --progress-bar "$ANDROID_BUNDLE_URL_ROOT$TARBALL" | tar -xzf - -C "$BUNDLE_TMPDIR" fi # Delete old dev bundle and rename the new one on top of it.