X-Git-Url: https://src.twobees.de/?a=blobdiff_plain;ds=sidebyside;f=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fant%2F_ant;fp=stow%2Foh-my-zsh%2F.oh-my-zsh%2Fplugins%2Fant%2F_ant;h=0000000000000000000000000000000000000000;hb=1a8e170bbe5c6641a26ab1ce2e6ce6c5c1faa4cd;hp=24a8e3667e98ead91469073729c72a0c79a65c7d;hpb=475ba35502579302593f4735c853c49ef1845dcb;p=dotfiles.git diff --git a/stow/oh-my-zsh/.oh-my-zsh/plugins/ant/_ant b/stow/oh-my-zsh/.oh-my-zsh/plugins/ant/_ant deleted file mode 100644 index 24a8e36..0000000 --- a/stow/oh-my-zsh/.oh-my-zsh/plugins/ant/_ant +++ /dev/null @@ -1,22 +0,0 @@ -#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 "$@"