-
Notifications
You must be signed in to change notification settings - Fork 986
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ios: fix lowercased variable name in Xcode config #15184
Conversation
Jenkins BuildsClick to see older builds (14)
|
02c926e
to
4e01be4
Compare
The error in
Seems to be a known issue:
But no clarity on the exact cause. |
The script that fails is:
Simply this: status-mobile/ios/StatusIm.xcodeproj/project.pbxproj Lines 586 to 587 in 4e01be4
|
I think the reason this fails is the broken shebang at the beginning of the file:
Because if I look at other files for this script on another host the shebang is correct:
|
8393de0
to
091f3bb
Compare
091f3bb
to
bd4ec89
Compare
In some cases might result in failures due to empty shebang: ``` Command PhaseScriptExecution failed with a nonzero exit code ``` Because the script file looks like this: ``` \#! set -o errexit export NODE_BINARY="node" export NODE_ARGS=" --openssl-legacy-provider --max-old-space-size=16384 " bash -x ../node_modules/react-native/scripts/react-native-xcode.sh > ./react-native-xcode.log 2>&1 ``` Signed-off-by: Jakub Sokołowski <jakub@status.im>
bd4ec89
to
6c7054b
Compare
Fixing my own mistake from:
In some cases might result in failures due to empty shebang:
Because the script file looks like this: