1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-15 08:47:20 +08:00
This commit is contained in:
SevCrane
2024-06-05 23:20:28 +08:00
commit 5e482958f6
7329 changed files with 240086 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import {app} from 'electron';
import {ALAS_RELAUNCH_ARGV} from '@common/constant/config';
export const isRelaunch = process.argv.includes(ALAS_RELAUNCH_ARGV);
function relaunchApp() {
/**
* TODO Some events need to be rehandled for restart operations
*/
if (!isRelaunch) {
app.relaunch({args: process.argv.slice(1).concat([ALAS_RELAUNCH_ARGV])});
}
}
export default relaunchApp;