Open trombini77 opened 1 year ago
I tested the example in my Windows 10 that has VSCode with MINGW64 and CYGWIN shells and in both I saw it starts a cmd instead of execute the bash shell.
cmd
Is possible to fix or set what executable file call when execute them?
I was able to make it execute a bash script by using
provider "shell" { interpreter = ["bash", "-c"'] }
Note that "/usr/bin/bash" or "/usr/bin/env", "bash" fails with a not found error.
"/usr/bin/bash"
"/usr/bin/env", "bash"
I tested the example in my Windows 10 that has VSCode with MINGW64 and CYGWIN shells and in both I saw it starts a
cmd
instead of execute the bash shell.Is possible to fix or set what executable file call when execute them?