mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-25 23:15:18 +00:00
14 lines
379 B
TypeScript
14 lines
379 B
TypeScript
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"))
|
|
}
|
|
}
|
|
}
|