From de17e997887d9759bae48e604f97706c88862822 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Yohan=20Tamb=C3=A8?= Date: Tue, 15 Mar 2016 14:37:55 +0100 Subject: [PATCH] Fixed categories name as command for Symfony Console --- src/_console | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_console b/src/_console index 245b0da..7e5b454 100644 --- a/src/_console +++ b/src/_console @@ -47,7 +47,7 @@ _console_get_command_list () { IFS=" " `_find_console` --no-ansi | \ sed "1,/Available commands/d" | \ - awk '/ [a-z]+/ { print $0 }' | \ + awk '/ [a-z]+/ { print $0 }' | \ sed -E 's/^[ ]+//g' | \ sed -E 's/[:]+/\\:/g' | \ sed -E 's/[ ]{2,}/\:/g'