mirror of
https://github.com/felixrieseberg/windows95.git
synced 2026-05-14 18:31:59 +00:00
11 lines
213 B
TypeScript
11 lines
213 B
TypeScript
import { app } from "electron";
|
|
|
|
export function setupUpdates() {
|
|
if (app.isPackaged) {
|
|
require("update-electron-app")({
|
|
repo: "felixrieseberg/windows95",
|
|
updateInterval: "1 hour",
|
|
});
|
|
}
|
|
}
|