doc: Remove invalid commas for hcl examples

This commit is contained in:
tsingletonacic 2025-06-12 10:20:39 +02:00 committed by GitHub
parent 65c2eb0469
commit 0201331a1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -348,8 +348,8 @@ tempfile_extension
```hcl
provisioner "shell-local" {
environment_vars = ["SHELLLOCALTEST=ShellTest2"],
tempfile_extension = ".cmd",
environment_vars = ["SHELLLOCALTEST=ShellTest2"]
tempfile_extension = ".cmd"
inline = [echo "%SHELLLOCALTEST%"]
}
```
@ -377,7 +377,7 @@ customizations: use_linux_pathing and execute_command
```hcl
provisioner "shell-local" {
environment_vars = ["SHELLLOCALTEST=ShellTest3"],
environment_vars = ["SHELLLOCALTEST=ShellTest3"]
execute_command = ["bash", "-c", "{{.Vars}} {{.Script}}"]
use_linux_pathing = true
script = "./scripts/example_bash.sh"