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:
parent
f8fd129df6
commit
9f061dacb4
|
|
@ -55,7 +55,7 @@ source "tart-cli" "tart" {
|
|||
|
||||
locals {
|
||||
xcode_install_provisioners = [
|
||||
for version in var.xcode_version : {
|
||||
for version in sort(var.xcode_version, true) : {
|
||||
type = "shell"
|
||||
inline = [
|
||||
"source ~/.zprofile",
|
||||
|
|
|
|||
Loading…
Reference in New Issue