Fix mix-fast plugin (#6708)

The mix command for listing all available actions has been changed from
`mix --help` to `mix help`.
This commit is contained in:
Cristian Álvarez Belaustegui 2018-04-25 22:06:26 +02:00 committed by Marc Cornellà
parent acacfec924
commit bf87e99a14
1 changed files with 1 additions and 1 deletions

View File

@ -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 () {