Skip to content

Commit 2057b3e

Browse files
author
Serghey Rodin
committed
fix from pmamak: If locally installed package version is higher than the repo version show it as up-to-date hestiacp#565
1 parent 73c6f0f commit 2057b3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/v-list-sys-vesta-updates

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ else
8181
TIME=$(date -d @$pkg_date +"%T")
8282
fi
8383
UPDATED='yes'
84-
if [ ! -z "$latest" ] && [ "$latest" != "vesta-$VERSION-$RELEASE" ]; then
84+
if [ ! -z "$latest" ] && [ "$latest" \> "vesta-$VERSION-$RELEASE" ]; then
8585
UPDATED='no'
8686
fi
8787
data="NAME='vesta' VERSION='$VERSION' RELEASE='$RELEASE' ARCH='$ARCH'"

0 commit comments

Comments
 (0)