We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8c5e6c9 commit d0a2631Copy full SHA for d0a2631
scripts/build.sh
@@ -170,6 +170,12 @@ function CheckUnexpectedFailures() {
170
171
# Dynamically fetches the latest available simulator for a given OS and device type.
172
function get_latest_simulator() {
173
+ if [[ "$method" == "cmake" ]]; then
174
+ # Skip for cmake builds since xcrun isn't available on Linux.
175
+ echo "null"
176
+ return 0
177
+ fi
178
+
179
local os_name="$1"
180
local device_keyword="$2"
181
local simulator_name
0 commit comments