Sort Xcodes to always install the freshest first

Seems it's leading to things like:

> Unable to connect to simulator.
This commit is contained in:
fedor 2024-10-27 08:42:58 -07:00
parent 9f061dacb4
commit 74040f6870
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ source "tart-cli" "tart" {
locals {
xcode_install_provisioners = [
for version in sort(var.xcode_version, true) : {
for version in reverse(sort(var.xcode_version)) : {
type = "shell"
inline = [
"source ~/.zprofile",