Arnaud Vergnet 3 years ago
parent
commit
f675bda780
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      install.sh

+ 3
- 1
install.sh View File

@@ -3,7 +3,9 @@
3 3
 base_dir=$(pwd)
4 4
 
5 5
 function ios_install {
6
-  cd "$base_dir"/ios && pod install
6
+  cd "$base_dir"/ios || exit 1
7
+  rm Podfile.lock
8
+  pod install
7 9
 }
8 10
 
9 11
 function android_install {

Loading…
Cancel
Save