From 3c31646382725f1823120ff8062e4bf02e62506c Mon Sep 17 00:00:00 2001 From: Arnaud Vergnet Date: Tue, 14 Jul 2020 18:11:44 +0200 Subject: [PATCH] Improved install script for ios --- install.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 3ff53eb..dce5ff3 100755 --- a/install.sh +++ b/install.sh @@ -3,7 +3,9 @@ base_dir=$(pwd) function ios_install { - cd "$base_dir"/ios && pod install + cd "$base_dir"/ios || exit 1 + rm Podfile.lock + pod install } function android_install {