[Fix] Force no-ansi for all

This commit is contained in:
Laurent Goussard 2014-07-21 11:09:09 +02:00
parent 97402d4ab8
commit 33edc548de
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@
_artisan_get_command_list () { _artisan_get_command_list () {
php artisan | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }' php artisan --no-ansi | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }'
} }
_artisan () { _artisan () {

View File

@ -40,7 +40,7 @@
_console_get_command_list () { _console_get_command_list () {
php console | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }' php console --no-ansi | sed "1,/Available commands/d" | awk '/ [a-z]+/ { print $1 }'
} }
_console () { _console () {