ohmyzsh/plugins/ant/ant.plugin.zsh
Gauthier Billot f36c3f3b59 Updated ant plugin (using ant -p)
Useful when build.xml references other build.xml files
2013-05-17 15:17:43 +02:00

16 lines
349 B
Bash

_ant_does_target_list_need_generating () {
[ ! -f .ant_targets ] && return 0;
[ .ant_targets -nt build.xml ] && return 0;
return 1;
}
_ant () {
if [ -f build.xml ]; then
if _ant_does_target_list_need_generating; then
ant -p | grep \^" " | cut -f2 -d" " > .ant_targets
fi
compadd `cat .ant_targets`
fi
}
compdef _ant ant