1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 07:20:40 +01:00

Merge pull request #1622 from hacfi/patch-1

Fix Symfony2 command completion 'permission denied'
This commit is contained in:
Robby Russell
2013-04-23 20:03:26 -07:00

View File

@@ -1,7 +1,7 @@
# Symfony2 basic command completion
_symfony2_get_command_list () {
app/console --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
php app/console --no-ansi | sed "1,/Available commands/d" | awk '/^ [a-z]+/ { print $1 }'
}
_symfony2 () {