Blame view
plugins/phing/phing.plugin.zsh
209 Bytes
|
093a6c34b
|
1 2 |
_phing () {
if [ -f build.xml ]; then
|
|
d9bebbb3c
|
3 |
compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|grep -v "Warning:"|awk '{print $1}')
|
|
093a6c34b
|
4 5 6 7 |
fi } compdef _phing phing |