Skip to content

Commit

Permalink
Fix symfony command completion 'permission denied'
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromemacias committed Jul 22, 2013
1 parent 2cc4801 commit d0e312f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/symfony/symfony.plugin.zsh
@@ -1,7 +1,7 @@
# symfony basic command completion

_symfony_get_command_list () {
./symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }'
php symfony | sed "1,/Available tasks/d" | awk 'BEGIN { cat=null; } /^[A-Za-z]+$/ { cat = $1; } /^ :[a-z]+/ { print cat $1; }'
}

_symfony () {
Expand Down

0 comments on commit d0e312f

Please sign in to comment.