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
This commit is contained in:
Brian Leonard 2015-12-09 04:39:36 -08:00 committed by facebook-github-bot-5
parent 1e8e4dc223
commit da0ad0ce4c
1 changed files with 1 additions and 5 deletions

View File

@ -14,16 +14,12 @@ case "$CONFIGURATION" in
Debug) Debug)
DEV=true DEV=true
;; ;;
Release)
DEV=false
;;
"") "")
echo "$0 must be invoked by Xcode" echo "$0 must be invoked by Xcode"
exit 1 exit 1
;; ;;
*) *)
echo "Unsupported value of \$CONFIGURATION=$CONFIGURATION" DEV=false
exit 1
;; ;;
esac esac