session observer session close fixed, kill process fixed and optimized, git submodule path updated

This commit is contained in:
C
2023-02-01 15:41:09 +05:00
parent dae22f393c
commit b50c27ad10
5 changed files with 31 additions and 25 deletions
+3
View File
@@ -71,6 +71,9 @@ const run_app = async (app_path, app_port) => {
}
const kill_proc = (pid) => {
if (!is_proc_running(pid)) {
return
}
if (process.platform === 'win32') {
spawn('taskkill', ['/pid', pid, '/f', '/t'])
}