'init'
This commit is contained in:
14
lib/main/ipcs/ipcUpdate.ts
Normal file
14
lib/main/ipcs/ipcUpdate.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { app, ipcMain } from "electron";
|
||||
import { installServiceUpdate } from "../boot/updater";
|
||||
import path from "path";
|
||||
import { WORKING_DIR } from "../constants";
|
||||
|
||||
|
||||
ipcMain.handle('update:installServiceUpdate', async (_, bundleName: string) => {
|
||||
await installServiceUpdate(path.join(WORKING_DIR, bundleName));
|
||||
});
|
||||
|
||||
ipcMain.handle('update:restartApp', async () => {
|
||||
app.relaunch();
|
||||
app.exit(0);
|
||||
});
|
||||
Reference in New Issue
Block a user