Skip to content

Commit

Permalink
Update redis.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
midoks committed Oct 6, 2024
1 parent 4248307 commit 4dcae9f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions plugins/php/versions/common/redis.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serverPath=$(dirname "$rootPath")
sourcePath=${serverPath}/source/php
SYS_ARCH=`arch`
LIBNAME=redis
LIBV=5.3.7
LIBV=6.1.0
sysName=`uname`
actionType=$1
version=$2
Expand All @@ -21,8 +21,10 @@ if [ "$version" == "52" ];then
LIBV=2.2.7
elif [ "$version" -lt "70" ];then
LIBV=4.2.0
elif [ "$version" -gt "74" ];then
elif [ "$version" -lt "80" ];then
LIBV=5.3.7
elif [ "$version" -gt "80" ];then
LIBV=6.1.0
else
echo 'ok'
fi
Expand Down

0 comments on commit 4dcae9f

Please sign in to comment.