mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-17 07:00:12 +01:00
🎨 Improve system exit
This commit is contained in:
parent
e99035d727
commit
e28d0dc075
1 changed files with 9 additions and 8 deletions
|
|
@ -501,16 +501,17 @@ func Close(force bool, execInstallPkg int) (exitCode int) {
|
|||
clearPortJSON()
|
||||
util.UnlockWorkspace()
|
||||
|
||||
go func() {
|
||||
time.Sleep(500 * time.Millisecond)
|
||||
if waitSecondForExecInstallPkg {
|
||||
util.PushMsg(Conf.Language(130), 1000*5)
|
||||
// 桌面端退出拉起更新安装时有时需要重启两次 https://github.com/siyuan-note/siyuan/issues/6544
|
||||
// 这里多等待一段时间,等待安装程序启动
|
||||
time.Sleep(5 * time.Second)
|
||||
time.Sleep(4 * time.Second)
|
||||
}
|
||||
logging.LogInfof("exited kernel")
|
||||
util.WebSocketServer.Close()
|
||||
go func() {
|
||||
time.Sleep(500 * time.Millisecond)
|
||||
os.Exit(logging.ExitCodeOk)
|
||||
}()
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue