summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAli Polatel <hawking@gentoo.org>2008-06-20 18:45:01 +0000
committerAli Polatel <hawking@gentoo.org>2008-06-20 18:45:01 +0000
commitc2093525115c8b0b4495fd01302743b49eea82ed (patch)
treeb92cd68ca5d1b87a7e251c7b869658ec7cf4c154 /python-updater
parentSplitted checks. Respect PYUPDATER_OPTIONS. Bashified tests. Added man page. (diff)
downloadpython-updater-c2093525115c8b0b4495fd01302743b49eea82ed.tar.gz
python-updater-c2093525115c8b0b4495fd01302743b49eea82ed.tar.bz2
python-updater-c2093525115c8b0b4495fd01302743b49eea82ed.zip
Fixed veinfo.
Diffstat (limited to 'python-updater')
-rwxr-xr-xpython-updater2
1 files changed, 1 insertions, 1 deletions
diff --git a/python-updater b/python-updater
index 4fd5559..f6d89c9 100755
--- a/python-updater
+++ b/python-updater
@@ -90,7 +90,7 @@ EOF_USAGE
# veinfo(verbosity, message)
# einfo message if VERBOSE is bigger than verbosity
veinfo() {
- if [[ VERBOSE > $1 ]]; then
+ if [[ VERBOSE -ge $1 ]]; then
shift
einfo $@
fi