mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
Pass --progress-bar to curl in ensure_android_bundle
Alternatives (doing it all in node) were much more invasive.
This commit is contained in:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user