修复:提示完了不更新

This commit is contained in:
2024-01-29 23:04:46 +08:00
parent 574da47849
commit 130839b368

View File

@@ -96,6 +96,7 @@ fi
if [ $(which aptss) ];then if [ $(which aptss) ];then
APT_COMMAND=aptss APT_COMMAND=aptss
/usr/bin/apt update
log.info "Using aptss to operate the upgrade process since we detect it." log.info "Using aptss to operate the upgrade process since we detect it."
elif [ -e /usr/bin/apt ];then elif [ -e /usr/bin/apt ];then
APT_COMMAND=/usr/bin/apt APT_COMMAND=/usr/bin/apt
@@ -104,6 +105,7 @@ else
log.error "Nope we support debian only now" log.error "Nope we support debian only now"
exit -1 exit -1
fi fi
${APT_COMMAND} update ${APT_COMMAND} update
updatetext=`${APT_COMMAND} update 2>&1` updatetext=`${APT_COMMAND} update 2>&1`
@@ -168,3 +170,5 @@ user=$(who | awk '{print $1}' | head -n 1)
log.info "ACE环境中有 $update_app_number 个软件包可升级,正在自动升级" log.info "ACE环境中有 $update_app_number 个软件包可升级,正在自动升级"
notify-send -a cn.flamescion.bookworm-compatibility-mode "ACE 兼容环境" "ACE环境中有 $update_app_number 个软件包可升级,正在自动升级" notify-send -a cn.flamescion.bookworm-compatibility-mode "ACE 兼容环境" "ACE环境中有 $update_app_number 个软件包可升级,正在自动升级"
${APT_COMMAND} full-upgrade