Skip to content

Commit

Permalink
feat(Linux): Add auto updater for Linux AppImage builds
Browse files Browse the repository at this point in the history
  • Loading branch information
adlk committed Mar 5, 2019
1 parent d2e1802 commit d641b4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/electron/ipc-api/autoUpdate.js
Expand Up @@ -4,7 +4,7 @@ import { autoUpdater } from 'electron-updater';
const debug = require('debug')('Franz:ipcApi:autoUpdate');

export default (params) => {
if (process.platform === 'darwin' || process.platform === 'win32') {
if (process.platform === 'darwin' || process.platform === 'win32' || process.env.APPIMAGE) {
ipcMain.on('autoUpdate', (event, args) => {
try {
autoUpdater.autoInstallOnAppQuit = false;
Expand Down

0 comments on commit d641b4e

Please sign in to comment.