From 2057b3ee955a5987a560a3edf82a9a94158fd59a Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Wed, 7 Sep 2016 16:41:35 +0300 Subject: [PATCH] fix from pmamak: If locally installed package version is higher than the repo version show it as up-to-date #565 --- bin/v-list-sys-vesta-updates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/v-list-sys-vesta-updates b/bin/v-list-sys-vesta-updates index dee911dc7..3fea45718 100755 --- a/bin/v-list-sys-vesta-updates +++ b/bin/v-list-sys-vesta-updates @@ -81,7 +81,7 @@ else TIME=$(date -d @$pkg_date +"%T") fi UPDATED='yes' -if [ ! -z "$latest" ] && [ "$latest" != "vesta-$VERSION-$RELEASE" ]; then +if [ ! -z "$latest" ] && [ "$latest" \> "vesta-$VERSION-$RELEASE" ]; then UPDATED='no' fi data="NAME='vesta' VERSION='$VERSION' RELEASE='$RELEASE' ARCH='$ARCH'"