We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39105ce commit 146ff45Copy full SHA for 146ff45
1 file changed
scripts/build-release.sh
@@ -310,7 +310,12 @@ build_for_arch() {
310
echo "🔨 Building for $arch..."
311
312
# Fetch build settings once for this arch (used by build_for_arch and bundle_dylibs)
313
- build_settings=$(xcodebuild -project "$PROJECT" -scheme "$SCHEME" -configuration "$CONFIG" -arch "$arch" -skipPackagePluginValidation -showBuildSettings 2>&1)
+ echo "Fetching build settings..."
314
+ if ! build_settings=$(xcodebuild -project "$PROJECT" -scheme "$SCHEME" -configuration "$CONFIG" -arch "$arch" -skipPackagePluginValidation -showBuildSettings 2>&1); then
315
+ echo "❌ FATAL: xcodebuild -showBuildSettings failed"
316
+ echo "$build_settings"
317
+ exit 1
318
+ fi
319
320
# Prepare architecture-specific libraries
321
prepare_mariadb "$arch"
0 commit comments