ohmyzsh/plugins/ant/_ant
Codebuff Contributor e99098c5e4 fix(brew): ensure Homebrew sbin directory is added to PATH
Signed-off-by: god032396-del <god032396@gmail.com>
2026-06-13 02:21:31 +00:00

23 lines
419 B
Plaintext

#compdef ant
_ant_does_target_list_need_generating () {
[[ ! -f .ant_targets ]] && return 0
[[ build.xml -nt .ant_targets ]] && return 0
return 1
}
_ant () {
if [[ ! -f build.xml ]]; then
return
fi
if ! _ant_does_target_list_need_generating; then
return
fi
ant -p | awk -F " " 'NR > 5 { print lastTarget } { lastTarget = $1 }' >| .ant_targets
compadd -- "$(cat .ant_targets)"
}
_ant "$@"