I'm trying to test running jobs in bamboo which invoke a script using the bash.exe from the WSL on Windows 10 (without much luck). In my test bamboo is running on a local account as a service which also happens to be my account (for testing). I have ubuntu bash shells open so-as to keep the WSL alive. I created a simple .sh script which does :
```
#!/bin/bash
echo "hello world"
```
Then in my task I setup the WSL bash as an executable ("c:\Windows\System32\bash.exe") and create a command task using that executable with arguments:
`-c "/mnt/c/path/to/my/script.sh"`
When I run it.. it just hangs. Does anyone have experience getting this to work? Thoughts?