summaryrefslogtreecommitdiff
path: root/completions/ant
diff options
context:
space:
mode:
authorVille Skyttä <ville.skytta@iki.fi>2011-04-25 23:44:08 +0300
committerVille Skyttä <ville.skytta@iki.fi>2011-04-26 00:15:03 +0300
commitf48d6fb10d13d7bdf28d76dab0d87e466d1c3571 (patch)
tree7ef24120ded851af2e06584d47470cb2182f4100 /completions/ant
parent976ba448251af67514af323be80fa938ffbe699d (diff)
downloadbash-completion-f48d6fb10d13d7bdf28d76dab0d87e466d1c3571.tar.gz
Use {x..y} brace expansion instead of `seq', loops, or long literal sequences.
Diffstat (limited to 'completions/ant')
-rw-r--r--completions/ant2
1 files changed, 1 insertions, 1 deletions
diff --git a/completions/ant b/completions/ant
index f4124293..d1ee16e7 100644
--- a/completions/ant
+++ b/completions/ant
@@ -21,7 +21,7 @@ _ant()
return 0
;;
-nice)
- COMPREPLY=( $( compgen -W '1 2 3 4 5 6 7 8 9 10' -- "$cur" ) )
+ COMPREPLY=( $( compgen -W '{1..10}' -- "$cur" ) )
return 0
;;
-lib|-logger|-listener|-D|-inputhandler|-main)