blob: ba2b458ece7dcf71fc35658a2b2d28cd4ab6000e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { initI18n, t } from "./i18n"
export const UPDATER_ENABLED = () => window.__OPENCODE__?.updaterEnabled ?? false
export async function runUpdater({ alertOnFail }: { alertOnFail: boolean }) {
await initI18n()
try {
await window.api.runUpdater(alertOnFail)
} catch {
if (alertOnFail) {
window.alert(t("desktop.updater.checkFailed.message"))
}
}
}
|