From 5a6109d3b00c5690d11e3aa15dbf7972126270b8 Mon Sep 17 00:00:00 2001 From: syui Date: Thu, 8 Jan 2026 10:39:09 +0900 Subject: [PATCH] fix --- ios/build.zsh | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ios/build.zsh b/ios/build.zsh index 0183fce..cef231a 100755 --- a/ios/build.zsh +++ b/ios/build.zsh @@ -78,9 +78,11 @@ function cleanup_build { # 3. CocoaPods echo "3. Installing CocoaPods..." - cd ios - pod install - cd .. + if [ -z "$1" ];then + cd ios + pod install + cd .. + fi # 4. Signing (Automated) echo "4. Configuring Xcode Signing..." @@ -129,7 +131,7 @@ EOF } case $1 in - skip-init) + i) echo "Skipping cleanup_build..." ;; *)