From ec0c478a024d303c6f3001a017efba7c54939ef7 Mon Sep 17 00:00:00 2001 From: fedor Date: Mon, 10 Mar 2025 14:07:10 +0400 Subject: [PATCH] Escape runtime --- templates/xcode.pkr.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/xcode.pkr.hcl b/templates/xcode.pkr.hcl index 52a3fd6..f2018e2 100644 --- a/templates/xcode.pkr.hcl +++ b/templates/xcode.pkr.hcl @@ -150,7 +150,7 @@ build { inline = concat( ["source ~/.zprofile"], [ - for runtime in var.additional_runtimes : "sudo xcodes runtimes install ${runtime}" + for runtime in var.additional_runtimes : "sudo xcodes runtimes install '${runtime}'" ] ) }