Select the 4th line of output, instead of the second to last line

This commit is contained in:
Michishige Kaito 2014-07-16 18:22:27 +01:00
parent 616fa85458
commit 2de914d8c3

View File

@ -8,8 +8,8 @@
# https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT
function __grunt_print_tasks
set -l info (grunt --version --verbose ^/dev/null | tail -n2 | head -n1)
set -l tasks (echo $info | sed -e 's/Available tasks: //' | tr ' ' '\n')
set -l info (grunt --version --verbose ^/dev/null)
set -l tasks (echo $info[4] | sed -e 's/Available tasks: //' | tr ' ' '\n')
for t in $tasks
echo $t
end