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:37:54 -07:00
parent f8fd129df6
commit 9f061dacb4
1 changed files with 1 additions and 1 deletions

View File

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