You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
shellScript = "echo \"$PRODUCT_NAME.app\" > \"$PROJECT_DIR\"/Flutter/ephemeral/.app_filename\n\n# Xcode may invoke this script with CURRENT_ARCH unset or as 'undefined_arch'.\n# Normalize it so Flutter can locate/build the correct artifacts.\nif [ -z \"${CURRENT_ARCH:-}\" ] || [ \"$CURRENT_ARCH\" = \"undefined_arch\" ]; then\n export CURRENT_ARCH=\"$(uname -m)\"\nfi\n\n\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh embed\n";
shellScript = "# Xcode may invoke this script with CURRENT_ARCH unset or as 'undefined_arch'.\n# Normalize it so Flutter can produce the correct App.framework.\nif [ -z \"${CURRENT_ARCH:-}\" ] || [ \"$CURRENT_ARCH\" = \"undefined_arch\" ]; then\n export CURRENT_ARCH=\"$(uname -m)\"\nfi\n\n\"$FLUTTER_ROOT\"/packages/flutter_tools/bin/macos_assemble.sh\ntouch Flutter/ephemeral/tripwire\n";
0 commit comments