From 6bc2cff03a67ddade76a844b8c574be664b15832 Mon Sep 17 00:00:00 2001 From: Justin SB Date: Thu, 9 Oct 2014 10:24:11 -0700 Subject: [PATCH] Pass --progress-bar to curl in ensure_android_bundle Alternatives (doing it all in node) were much more invasive. --- tools/cordova-scripts/ensure_android_bundle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.