mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-06-05 05:03:16 +02:00
Fix mix-fast plugin
The mix command for listing all available actions has been changed from `mix --help` to `mix help`.
This commit is contained in:
parent
0cec462621
commit
1679e062f2
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ _mix_does_task_list_need_generating () {
|
||||||
}
|
}
|
||||||
|
|
||||||
_mix_generate () {
|
_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 () {
|
_mix () {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue