From 4a69524bff069880c4837e5d1325c6f87775bfa3 Mon Sep 17 00:00:00 2001 From: Vishesh Handa Date: Sat, 14 Nov 2020 23:31:13 +0100 Subject: [PATCH] build_ios: Remove the check for uncommitted changes Hopefully now that builds witll be done by the CI, this won't really happen. --- scripts/build_ios.sh | 8 -------- 1 file changed, 8 deletions(-) diff --git a/scripts/build_ios.sh b/scripts/build_ios.sh index 7dfc5d7f..3c55fa70 100755 --- a/scripts/build_ios.sh +++ b/scripts/build_ios.sh @@ -5,14 +5,6 @@ set -eo pipefail cd "$(dirname "$0")" cd ../ -# Check for uncommitted changes -if [[ $(git status -s | grep -v '??') ]]; then - echo "Uncommitted Changes." - echo "Exiting" - git status - exit 1 -fi - flutter pub get # Download the required libraries