Morebec / OrkestraMono

Orkestra is a library of infrastructure and architecture helpers for creating CQRS/ES/DDD applications
Apache License 2.0
2 stars 0 forks source link

bin/ok command fails #2

Closed johnnypea closed 3 years ago

johnnypea commented 3 years ago

MacOS 11.4

❯ bin/ok up
Failed to execute process 'bin/ok'. Reason:
The file 'bin/ok' specified the interpreter '/usr/bin/bash', which is not an executable command.
❯ which -a bash
/usr/local/bin/bash
/bin/bash
jwillp commented 3 years ago

@johnnypea A quick fix would be to change the shebang to #!/usr/bin/env bash.

Can you run the /usr/bin/env bash in a terminal and confirm that it launches bash?

If it works I am going to make the changes.

johnnypea commented 3 years ago

Yes, that works. Thanks.