Change to update_base_url

This commit is contained in:
David Baker 2016-12-01 18:01:23 +00:00
parent e3290c1117
commit 2930a94c79
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ function startAutoUpdate(update_url) {
// package.json. There is no autoupdate for Linux: it's expected that // package.json. There is no autoupdate for Linux: it's expected that
// the distro will provide it. // the distro will provide it.
if (process.platform == 'darwin') { if (process.platform == 'darwin') {
autoUpdater.setFeedURL(update_url + 'macos/'); autoUpdater.setFeedURL(update_base_url + 'update/macos/');
} }
// We check for updates ourselves rather than using 'updater' because we need to // We check for updates ourselves rather than using 'updater' because we need to
// do it in the main process (and we don't really need to check every 10 minutes: // do it in the main process (and we don't really need to check every 10 minutes: