diff options
author | openwrt <openwrt@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-07-27 07:27:13 +0000 |
---|---|---|
committer | openwrt <openwrt@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2004-07-27 07:27:13 +0000 |
commit | f6ea7efa4b6dae8de844bb6bc1bcf6e52e375ba0 (patch) | |
tree | e9ae0639b04197b20c615c56d1ff78ced0d5e1cf /root/bin/ipkg | |
parent | da723a7fdefaa9d3e792aaabf40a033dab768e3d (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-x | root/bin/ipkg | 2 |
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; } |