Commit bf87e99a authored by Cristian Álvarez Belaustegui's avatar Cristian Álvarez Belaustegui Committed by Marc Cornellà
Browse files

Fix mix-fast plugin (#6708)

The mix command for listing all available actions has been changed from
`mix --help` to `mix help`.
parent acacfec9
......@@ -12,7 +12,7 @@ _mix_does_task_list_need_generating () {
}
_mix_generate () {
mix --help | grep -v 'iex -S' | tail -n +2 | cut -d " " -f 2 > .mix_tasks
mix help | grep -v 'iex -S' | tail -n +2 | cut -d " " -f 2 > .mix_tasks
}
_mix () {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment