From 118e93b85afb8b222b25c48d55b6de73762e4a5c Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Wed, 30 Jul 2025 15:45:59 +0800 Subject: [PATCH] Fix: invalid clean command --- scripts/build-ios.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build-ios.sh b/scripts/build-ios.sh index b4ee52e3..985fb080 100755 --- a/scripts/build-ios.sh +++ b/scripts/build-ios.sh @@ -186,8 +186,8 @@ clean_ios_build() { log_debug "Cleaned ios/App/DerivedData/" fi - # Clean Capacitor - npx cap clean ios || true + # Clean Capacitor (using npm script instead of invalid cap clean command) + npm run clean:ios || true log_success "iOS build cleaned" }