With electron on widows I want to launch an auto-update when needed. I want to use squirell and not electron-updater . Do you know how to do that?
0
votes
1 Answers
0
votes
Yes, you probably don't need to use electron-updater. You can build your app with Squirrel by using electron-packager
: https://github.com/electron-userland/electron-packager
Then, you could use build-in module autoUpdater
(electron's doc here) to make auto updater.