mirror of
https://git.adityakumar.xyz/config.git
synced 2024-12-25 11:12:53 +00:00
8 lines
209 B
Bash
8 lines
209 B
Bash
|
_phing () {
|
||
|
if [ -f build.xml ]; then
|
||
|
compadd $(phing -l|grep -v "\[property\]"|grep -v "Buildfile"|sed 1d|grep -v ":$" |grep -v "^\-*$"|grep -v "Warning:"|awk '{print $1}')
|
||
|
fi
|
||
|
}
|
||
|
|
||
|
compdef _phing phing
|