fix phing plugin

Removed service information from result. Now showing only targets.
This commit is contained in:
Vladimir Matsola 2013-11-11 18:29:15 +02:00
commit 4f84ea68e6

View file

@ -7,7 +7,7 @@ _phing_does_target_list_need_generating () {
_phing () { _phing () {
if [ -f build.xml ]; then if [ -f build.xml ]; then
if _phing_does_target_list_need_generating; then if _phing_does_target_list_need_generating; then
phing -l |grep -v ":$" |grep -v "^-*$" > .phing_targets phing -l -q |grep -v ":$" |grep -v "^-*$" > .phing_targets
fi fi
compadd `cat .phing_targets` compadd `cat .phing_targets`
fi fi