mirror of
https://github.com/robbyrussell/oh-my-zsh.git
synced 2025-12-06 15:30:40 +01:00
8 lines
190 B
Bash
8 lines
190 B
Bash
_phing () {
|
|
if [ -f build.xml ]; then
|
|
compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|awk '{print $1}')
|
|
fi
|
|
}
|
|
|
|
compdef _phing phing
|