Skip to content

Commit

Permalink
chore: fix some values, not used
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud committed Sep 3, 2024
1 parent 54e6621 commit 1705004
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/Updater.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ let IS_PROD = process.env.NODE_ENV === 'production'
/**
* IS NOT WORKING BECAUSE OF THE CHOICE TO HAVE `electron-vX.Y.x` AS TAGNAME THAS IS NOT SEMVER COMPLIANT..
*/
let version = `electron-v${app.getVersion()}`
let version = `${app.getVersion()}`

// eslint-disable-next-line no-constant-condition
if (true) {
IS_PROD = true
version = 'electron-v1.3.8'
version = '1.3.8'
}

/**
Expand Down

0 comments on commit 1705004

Please sign in to comment.