[desktop] use a nonbroken electron-updater version on each platform

5.3.0 couldn't handle windows machines with a restricted powershell.
6.0.0 fixed that, but the alpha that's currently available does not
work on linux because it's opening the child process wrong.
This commit is contained in:
nig 2023-01-30 09:16:01 +01:00 committed by ganthern
parent bc0d9ba8f0
commit 7cba629cb6
3 changed files with 6 additions and 4 deletions

View file

@ -120,6 +120,7 @@ async function buildDesktopPart({ version }) {
updateUrl: "http://localhost:9000/client/build",
iconPath: path.join(desktopIconsPath, "logo-solo-red.png"),
sign: false,
linux: process.platform === "linux",
})
const content = JSON.stringify(packageJSON, null, 2)