How can you run a shell script as a mix alias?
I've tried the following with no luck:
defp aliases() do
[
"test": [ "./scripts/test.sh" ]
]
end
defp aliases() do
[
"test": [ "scripts/test.sh" ]
]
end
Each returns with a variation of:
** (Mix) The task "./scripts/test" could not be found