summaryrefslogtreecommitdiff
path: root/root/bin/ipkg
diff options
context:
space:
mode:
authoropenwrt <openwrt@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-07-27 07:27:13 +0000
committeropenwrt <openwrt@3c298f89-4303-0410-b956-a3cf2f4a3e73>2004-07-27 07:27:13 +0000
commitf6ea7efa4b6dae8de844bb6bc1bcf6e52e375ba0 (patch)
treee9ae0639b04197b20c615c56d1ff78ced0d5e1cf /root/bin/ipkg
parentda723a7fdefaa9d3e792aaabf40a033dab768e3d (diff)
fix syntax error
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@113 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'root/bin/ipkg')
-rwxr-xr-xroot/bin/ipkg2
1 files changed, 1 insertions, 1 deletions
diff --git a/root/bin/ipkg b/root/bin/ipkg
index c802ce1b3a..bf275d842d 100755
--- a/root/bin/ipkg
+++ b/root/bin/ipkg
@@ -26,7 +26,7 @@ ipkg_is_upgrade () {
while [ \! -z "$A" ] && [ \! -z "$B" ]; do {
set $A; a=$1; shift; A=$*
set $B; b=$1; shift; B=$*
- { [ "$a" -gt "$b" ] 2>- || [ "$a" ">" "$b" ]; } && { return 0; }
+ { [ "$a" -gt "$b" ] 2>&- || [ "$a" ">" "$b" ]; } && { return 0; }
}; done
return 1;
}