From 556680cf5ef17b7dd394dcdbcf06b89781390d08 Mon Sep 17 00:00:00 2001 From: Kevin Stone Date: Sat, 2 Aug 2014 00:04:26 -0700 Subject: [PATCH] Update grunt.fish Fixed command error when no local Gruntfile results in a command error. Fixes #1592. --- share/completions/grunt.fish | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/share/completions/grunt.fish b/share/completions/grunt.fish index 145801ff1..f02578ea1 100644 --- a/share/completions/grunt.fish +++ b/share/completions/grunt.fish @@ -8,8 +8,7 @@ # https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT function __grunt_print_tasks - set -l info (grunt --version --verbose ^/dev/null) - set -l tasks (echo $info[4] | sed -e 's/Available tasks: //' | tr ' ' '\n') + set -l tasks (grunt --version --verbose ^/dev/null | awk '/Available tasks: / {$1=$2=""; print $0}' | awk '{$1=$1}1' | tr ' ' '\n') for t in $tasks echo $t end