Skip to content

Commit

Permalink
[Control Center] Packager bugfixes
Browse files Browse the repository at this point in the history
  • Loading branch information
JuanM04 committed Oct 16, 2019
1 parent ac7de21 commit e533035
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions control-center/utils/pack.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
const path = require('path')
const packager = require('electron-packager')
const rebuild = require('electron-packager').default
const rebuild = require('electron-rebuild').default

const ARCH = require('yargs').argv.arch || null

async function bundleElectronApp(icon) {
async function bundleElectronApp() {
let icon = ''

if (process.platform === 'darwin')
Expand Down Expand Up @@ -34,4 +34,4 @@ async function bundleElectronApp(icon) {
console.log(`Electron app bundles created:\n${appPaths.join('\n')}`)
}

bundleElectronApp(icon)
bundleElectronApp()

0 comments on commit e533035

Please sign in to comment.