mirror of
https://github.com/myvesta/vesta
synced 2025-07-06 04:51:54 -07:00
fix from pmamak: If locally installed package version is higher than the repo version show it as up-to-date #565
This commit is contained in:
parent
73c6f0fd32
commit
2057b3ee95
1 changed files with 1 additions and 1 deletions
|
@ -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'"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue