Browse Source

tauri: don't ask to restart separately in updater

Brendan Allan 2 months ago
parent
commit
661122bab8
1 changed files with 2 additions and 3 deletions
  1. 2 3
      packages/tauri/src/updater.ts

+ 2 - 3
packages/tauri/src/updater.ts

@@ -20,7 +20,7 @@ export async function runUpdater(onDownloadEvent?: (progress: DownloadEvent) =>
     return false
     return false
   }
   }
 
 
-  const shouldUpdate = await ask(`Version ${update.version} of OpenCode is available, would you like to install it?`)
+  const shouldUpdate = await ask(`Version ${update.version} of OpenCode has been downloaded, would you like to install it and relaunch?`)
   if (!shouldUpdate) return
   if (!shouldUpdate) return
 
 
   try {
   try {
@@ -30,8 +30,7 @@ export async function runUpdater(onDownloadEvent?: (progress: DownloadEvent) =>
     return false
     return false
   }
   }
 
 
-  const shouldRestart = await ask("Update installed successfully, would you like to restart OpenCode?")
-  if (shouldRestart) await relaunch()
+  await relaunch()
 
 
   return true
   return true
 }
 }