summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Gruenbacher <agruen@suse.de>2004-11-08 16:27:25 +0000
committerAndreas Gruenbacher <agruen@suse.de>2004-11-08 16:27:25 +0000
commit229595cdc8e34bc780ea80683eae935a9e564406 (patch)
treec60caf42f31daac2aee82b8e85fea1f06db7b9f6
parent521b22524045baf633b729fdc5fa4a7c7c1d100c (diff)
downloadquilt-229595cdc8e34bc780ea80683eae935a9e564406.tar.gz
- bash_completion: Change [ x '>' y ] to [ x -gt y ].
-rw-r--r--bash_completion2
1 files changed, 1 insertions, 1 deletions
diff --git a/bash_completion b/bash_completion
index ce5431c..46229a6 100644
--- a/bash_completion
+++ b/bash_completion
@@ -246,7 +246,7 @@ _quilt_completion()
}
[ ${BASH_VERSINFO[0]} -gt 2 -o \
- ${BASH_VERSINFO[0]} = 2 -a ${BASH_VERSINFO[1]} '>' 04 ] \
+ ${BASH_VERSINFO[0]} = 2 -a ${BASH_VERSINFO[1]} -gt 04 ] \
&& _quilt_complete_opt="-o filenames"
complete -F _quilt_completion $_quilt_complete_opt quilt
unset -v _quilt_complete_opt