From f36c3f3b5950270b6a1db051c90e8266700d6797 Mon Sep 17 00:00:00 2001 From: Gauthier Billot Date: Fri, 17 May 2013 15:17:43 +0200 Subject: [PATCH] Updated ant plugin (using ant -p) Useful when build.xml references other build.xml files --- plugins/ant/ant.plugin.zsh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/ant/ant.plugin.zsh b/plugins/ant/ant.plugin.zsh index 45f2b06eb..7ec5f691f 100644 --- a/plugins/ant/ant.plugin.zsh +++ b/plugins/ant/ant.plugin.zsh @@ -7,7 +7,7 @@ _ant_does_target_list_need_generating () { _ant () { if [ -f build.xml ]; then if _ant_does_target_list_need_generating; then - sed -n '/ .ant_targets + ant -p | grep \^" " | cut -f2 -d" " > .ant_targets fi compadd `cat .ant_targets` fi