[Xcode] Prevent install builds from using the default toolchain
Created attachment 451137 [details] Patch
<rdar://problem/88587680>
Comment on attachment 451137 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=451137&action=review > Source/WTF/WTF.xcodeproj/project.pbxproj:1761 > + shellScript = "if [ $(basename \"$TOOLCHAIN_DIR\") == \"XcodeDefault.xctoolchain\" ]; then\necho \"error: Installed toolchain doesn't match requested one, failing the build early to prevent falling back to default toolchain\"\nexit 1\nfi\n"; this is: ``` if [ $(basename "$TOOLCHAIN_DIR") == "XcodeDefault.xctoolchain" ]; then echo "error: Installed toolchain doesn't match requested one, failing the build early to prevent falling back to default toolchain" exit 1 fi ```
Comment on attachment 451137 [details] Patch Moving this elsewhere.