Browse Source

Improved install script for ios

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

+ 3
- 1
install.sh View File

3
 base_dir=$(pwd)
3
 base_dir=$(pwd)
4
 
4
 
5
 function ios_install {
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
 function android_install {
11
 function android_install {

Loading…
Cancel
Save