From e2e4784136c9af3ef4ec3c6fb0655b4863e7d62d Mon Sep 17 00:00:00 2001 From: tteckster Date: Sat, 19 Oct 2024 13:51:56 -0400 Subject: [PATCH] Update tianji.sh no update path available --- ct/tianji.sh | 27 +-------------------------- 1 file changed, 1 insertion(+), 26 deletions(-) diff --git a/ct/tianji.sh b/ct/tianji.sh index e8e83766..d740d975 100644 --- a/ct/tianji.sh +++ b/ct/tianji.sh @@ -55,32 +55,7 @@ function default_settings() { function update_script() { header_info if [[ ! -d /opt/tianji ]]; then msg_error "No ${APP} Installation Found!"; exit; fi -if (( $(df /boot | awk 'NR==2{gsub("%","",$5); print $5}') > 80 )); then - read -r -p "Warning: Storage is dangerously low, continue anyway? " prompt - [[ ${prompt,,} =~ ^(y|yes)$ ]] || exit -fi -RELEASE=$(curl -s https://api.github.com/repos/msgbyte/tianji/releases/latest | grep "tag_name" | awk '{print substr($2, 3, length($2)-4) }') -if [[ ! -f /opt/${APP}_version.txt ]] || [[ "${RELEASE}" != "$(cat /opt/${APP}_version.txt)" ]]; then - - msg_info "Stopping ${APP} Service" - systemctl stop tianji - msg_ok "Stopped ${APP} Service" - - msg_info "Updating ${APP} to ${RELEASE}" - cd /opt/tianji - git checkout -f -q v${RELEASE} - cd src/server - pnpm db:migrate:apply >/dev/null 2>&1 - echo "${RELEASE}" >/opt/${APP}_version.txt - msg_ok "Updated ${APP} to ${RELEASE}" - - msg_info "Starting ${APP}" - systemctl start tianji - msg_ok "Started ${APP}" - msg_ok "Updated Successfully" -else - msg_ok "No update required. ${APP} is already at ${RELEASE}." -fi +msg_error "There is currently no update path available." exit }