From 1ff91c2dfbd30d304bf3ce1d82c9c8604cca6818 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Wed, 11 Nov 2020 12:03:28 +0100 Subject: [PATCH] build_ios: Make it less verbose --- scripts/build_ios.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/build_ios.sh b/scripts/build_ios.sh index e712c366..757bd1eb 100755 --- a/scripts/build_ios.sh +++ b/scripts/build_ios.sh @@ -23,9 +23,9 @@ export LIBS_URL="https://github.com/GitJournal/ios-libraries/releases/download/v if [ ! -d "ios/libs" ]; then echo "Downloading Libs" - wget "$LIBS_URL" + wget -q "$LIBS_URL" cd ios - unzip ../libs.zip + unzip -q ../libs.zip cd - rm libs.zip fi @@ -46,4 +46,4 @@ echo "Build Name: $BUILD_NAME" flutter build ios --release --no-codesign --build-number=$BUILD_NUM --build-name=$BUILD_NAME cd ios -fastlane release +bundle exec fastlane release