forked from github/dataease
fix: 修复dectl脚本执行条件的判断逻辑
This commit is contained in:
parent
c981b49dd4
commit
4c6446b647
@ -244,8 +244,8 @@ function reload() {
|
||||
function version() {
|
||||
echo
|
||||
_get_current_version
|
||||
_get_latest_version
|
||||
echo "current version is $current_version"
|
||||
_get_latest_version
|
||||
echo "latest version is $latest_version"
|
||||
}
|
||||
function upgrade() {
|
||||
|
@ -20,7 +20,7 @@ if [ -f /usr/bin/dectl ]; then
|
||||
dectl stop
|
||||
INSTALL_TYPE='upgrade'
|
||||
|
||||
v2_version=$(dectl version |grep "^v2.")
|
||||
v2_version=$(dectl version | head -n 2 | grep "v2.")
|
||||
if [[ -z $v2_version ]];then
|
||||
echo "系统当前版本不是 DataEase v2 版本系列,不支持升级到 v2,请检查离线包版本。"
|
||||
exit 1;
|
||||
|
Loading…
Reference in New Issue
Block a user