From 010f752c9cedaf9e51c3d9954a20464619982145 Mon Sep 17 00:00:00 2001 From: Vishal Vadodariya Date: Tue, 14 Oct 2025 15:38:28 +0530 Subject: [PATCH] Refactor argument execution in with-environment.sh to support multiple arguments Summary: Updated the script to execute all provided arguments instead of just the first one, enhancing its flexibility. --- packages/react-native/scripts/xcode/with-environment.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/react-native/scripts/xcode/with-environment.sh b/packages/react-native/scripts/xcode/with-environment.sh index d2ddf3c02cabb4..5dc8f5bf5709fb 100755 --- a/packages/react-native/scripts/xcode/with-environment.sh +++ b/packages/react-native/scripts/xcode/with-environment.sh @@ -43,5 +43,5 @@ fi # Execute argument, if present if [ -n "$1" ]; then - "$1" + "$@" fi