Skip to content

Commit

Permalink
fix: do not use installer to update portable version #7768
Browse files Browse the repository at this point in the history
  • Loading branch information
Clem-Fern committed Nov 19, 2023
1 parent 2be079a commit 1e096ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tabby-electron/src/services/updater.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export class ElectronUpdaterService extends UpdaterService {
super()
this.logger = log.create('updater')

if (process.platform === 'linux') {
if (process.platform === 'linux' || process.env.PORTABLE_EXECUTABLE_FILE) {
this.electronUpdaterAvailable = false
return
}
Expand Down

0 comments on commit 1e096ed

Please sign in to comment.