File tree 2 files changed +19
-2
lines changed
2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/zsh
2
+
3
+ echo " ===== Installling CocoaPods ====="
4
+ export HOMEBREW_NO_INSTALL_CLEANUP=TRUE
5
+ brew install cocoapods
6
+ echo " ===== Installing Node.js ====="
7
+ brew install node@22
8
+ brew link node@22
9
+ echo " ===== Installing yarn ====="
10
+ brew install yarn
11
+
12
+ # Install dependencies
13
+ echo " ===== Running yarn install ====="
14
+ yarn install
15
+ echo " ===== Running pod install ====="
16
+ cd ios
17
+ pod install
Original file line number Diff line number Diff line change 1822
1822
CODE_SIGN_ENTITLEMENTS = zeus/zeus.entitlements;
1823
1823
CODE_SIGN_IDENTITY = "Apple Development";
1824
1824
CODE_SIGN_STYLE = Automatic;
1825
- CURRENT_PROJECT_VERSION = 4 ;
1825
+ CURRENT_PROJECT_VERSION = 1 ;
1826
1826
DEAD_CODE_STRIPPING = YES;
1827
1827
DEVELOPMENT_TEAM = 9TU7M3555F;
1828
1828
ENABLE_BITCODE = NO;
1868
1868
CODE_SIGN_ENTITLEMENTS = zeus/zeusRelease.entitlements;
1869
1869
CODE_SIGN_IDENTITY = "Apple Development";
1870
1870
CODE_SIGN_STYLE = Automatic;
1871
- CURRENT_PROJECT_VERSION = 4 ;
1871
+ CURRENT_PROJECT_VERSION = 1 ;
1872
1872
DEAD_CODE_STRIPPING = YES;
1873
1873
DEVELOPMENT_TEAM = 9TU7M3555F;
1874
1874
ENABLE_BITCODE = NO;
You can’t perform that action at this time.
0 commit comments