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 {
|
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",
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue