1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
prezto/plugins/ant/ant.plugin.zsh

28 lines
577 B

if stat -f%m . &> /dev/null; then
stat_cmd=(stat -f%m)
else
stat_cmd=(stat -L --format=%Y)
fi
function _ant_does_target_list_need_generating() {
if [[ ! -f .ant_targets ]]; then
return 0
else
accurate=$($stat_cmd .ant_targets)
changed=$($stat_cmd build.xml)
return $(expr $accurate '>=' $changed)
fi
}
function _ant() {
if [[ -f build.xml ]]; then
if _ant_does_target_list_need_generating; then
sed -n '/<target/s/<target.*name="\([^"]*\).*$/\1/p' build.xml > .ant_targets
fi
compadd `cat .ant_targets`
fi
}
compdef _ant ant