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
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.
-rw-r--r--ChangeLog2
-rwxr-xr-xpython-updater2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index d209dc3..d28e571 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,8 @@ This file lists all changes except typo and formatting fixes.
2008-06-20 Ali Polatel
+ * python-updater: Fixed veinfo
+
* python-updater, +man.include, +Makefile: Splitted checks and added
command line options for them. Added new tests eclass and soname.
Respect PYUPDATER_OPTIONS environment variable for default command
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