Browse Source

Fix mix-fast plugin (#6708)

The mix command for listing all available actions has been changed from
`mix --help` to `mix help`.
Cristian Álvarez Belaustegui 7 years ago
parent
commit
bf87e99a14
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/mix-fast/mix-fast.plugin.zsh

+ 1 - 1
plugins/mix-fast/mix-fast.plugin.zsh

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