fix: Correct syntax error in auto-update disabling function

- Fixed missing `fi` keyword in conditional block
- Resolved potential shell script syntax issue
- Maintained existing auto-update disabling logic
This commit is contained in:
煎饼果子卷鲨鱼辣椒 2025-02-07 10:16:14 +08:00
parent 2bfac391b3
commit 88541eaeda

View File

@ -428,7 +428,7 @@ disable_auto_update() {
log_error "验证失败:文件权限设置可能未生效"
show_manual_guide
return 1
}
fi
log_info "成功禁用自动更新"
return 0