summaryrefslogtreecommitdiffhomepage
path: root/packages/tauri/src
diff options
context:
space:
mode:
authorGitHub Action <[email protected]>2025-12-10 03:32:26 +0000
committerGitHub Action <[email protected]>2025-12-10 03:32:26 +0000
commit6db822fd923f3561fe4cefffc95f4179b23ee87c (patch)
tree543f1c13d16b408d8dfbf153cd9bd74e07cc7c0a /packages/tauri/src
parent661122bab84b49f113bdf96a346b80440006b26e (diff)
downloadopencode-6db822fd923f3561fe4cefffc95f4179b23ee87c.tar.gz
opencode-6db822fd923f3561fe4cefffc95f4179b23ee87c.zip
chore: format code
Diffstat (limited to 'packages/tauri/src')
-rw-r--r--packages/tauri/src/updater.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/tauri/src/updater.ts b/packages/tauri/src/updater.ts
index 870e534a8..0d3737d1e 100644
--- a/packages/tauri/src/updater.ts
+++ b/packages/tauri/src/updater.ts
@@ -20,7 +20,9 @@ export async function runUpdater(onDownloadEvent?: (progress: DownloadEvent) =>
return false
}
- const shouldUpdate = await ask(`Version ${update.version} of OpenCode has been downloaded, would you like to install it and relaunch?`)
+ const shouldUpdate = await ask(
+ `Version ${update.version} of OpenCode has been downloaded, would you like to install it and relaunch?`,
+ )
if (!shouldUpdate) return
try {