disable updater in dev mode

This commit is contained in:
Eugene Pankov
2019-06-03 17:51:25 +02:00
parent 4033885eb7
commit 807cb0aac4

View File

@@ -36,7 +36,7 @@ export class UpdaterService {
this.logger.debug('Checking for updates')
if (this.electronUpdaterAvailable) {
if (this.electronUpdaterAvailable && !process.env.TERMINUS_DEV) {
try {
this.autoUpdater.checkForUpdates()
} catch (e) {