Closed ShaulAb closed 5 years ago
Thank you very much for this! I'm using zsh as default and I think that's what causing the command ./control.sh setup to fail. Example:
./control.sh setup
My solution was to add a shebang (#!/bin/bash) to control.sh and it worked.
#!/bin/bash
Thanks for sharing your experience. I added the shebang to the setup files in the latest commit.
Thank you very much for this! I'm using zsh as default and I think that's what causing the command
./control.sh setup
to fail. Example:My solution was to add a shebang (
#!/bin/bash
) to control.sh and it worked.