diff options
Diffstat (limited to 'Completion')
-rw-r--r-- | Completion/Unix/Command/_ant | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_ant b/Completion/Unix/Command/_ant index 88c1f3ef4..f969ad859 100644 --- a/Completion/Unix/Command/_ant +++ b/Completion/Unix/Command/_ant @@ -86,7 +86,7 @@ case $state in buildfile=${(v)opt_args[(I)(-f|-file|-buildfile)]:-build.xml} fi if [[ -f $buildfile ]]; then - targets=( $(sed -n 's/ *<target name="\([^"]*\)".*/\1/p' < $buildfile) ) + targets=( $(sed -n "s/ *<target name=[\"']\([^\"']*\)[\"'].*/\1/p" < $buildfile) ) _wanted targets expl target compadd -a targets && ret=0 else _message -e targets target |