From 0ce2bce201696daece2e1b57e328b18d307ced88 Mon Sep 17 00:00:00 2001 From: Brian Leonard Date: Wed, 9 Dec 2015 04:39:36 -0800 Subject: [PATCH] Allow other Xcode configurations with DEV=false Summary: Updates build script to fix https://github.com/facebook/react-native/issues/4362 Closes https://github.com/facebook/react-native/pull/4520 Reviewed By: svcscm Differential Revision: D2730607 Pulled By: mkonicek fb-gh-sync-id: 2fc4a9815f19ab867a6a3dc77cf1b6eac8a25616 --- packager/react-native-xcode.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/packager/react-native-xcode.sh b/packager/react-native-xcode.sh index dfa413b80..5c88fdad1 100755 --- a/packager/react-native-xcode.sh +++ b/packager/react-native-xcode.sh @@ -14,16 +14,12 @@ case "$CONFIGURATION" in Debug) DEV=true ;; - Release) - DEV=false - ;; "") echo "$0 must be invoked by Xcode" exit 1 ;; *) - echo "Unsupported value of \$CONFIGURATION=$CONFIGURATION" - exit 1 + DEV=false ;; esac