From fc70f13e300837d9082b9fdb381a55fdb1a783ad Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Mon, 24 Feb 2025 10:25:19 +1100 Subject: [PATCH] CI fixes --- .drone.jsonnet | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index d1ebd23fd..55e2bbecb 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -29,7 +29,7 @@ local boot_simulator(device_type="") = { (if device_type != "" then 'xcrun simctl create "$devname" ' + device_type else - 'xcrun simctl create "$devname" "$(xcrun simctl list runtimes | grep -Eo \'com\\.apple\\.CoreSimulator\\.SimRuntime\\.iOS-[0-9]+(-[0-9]+)*\' | sort -V | tail -1)"' + 'xcrun simctl create "$devname" "$(xcrun simctl list runtimes | grep -Eo \'com\\\\.apple\\\\.CoreSimulator\\\\.SimRuntime\\\\.iOS-[0-9]+(-[0-9]+)*\' | sort -V | tail -1)"' ), 'sim_uuid=$(xcrun simctl list devices -je | jq -re \'[.devices[][] | select(.name == "\'$devname\'").udid][0]\')', 'xcrun simctl boot $sim_uuid',