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 51091d4 commit bef5cc1Copy full SHA for bef5cc1
packages/react-native/sdks/hermes-engine/utils/build-hermes-xcode.sh
@@ -37,12 +37,12 @@ function get_deployment_target {
37
}
38
39
enable_debugger="false"
40
-if [[ "$CONFIGURATION" == "Debug" ]]; then
+if [[ "$CONFIGURATION" = *Debug* ]]; then
41
enable_debugger="true"
42
fi
43
44
cmake_build_type=""
45
-if [[ $CONFIGURATION == "Debug" ]]; then
46
# JS developers aren't VM developers.
47
# Therefore we're passing as build type Release, to provide a faster build.
48
cmake_build_type="Release"
0 commit comments