diff --git a/src/cli.js b/src/cli.js index d408c513..4fe540e7 100644 --- a/src/cli.js +++ b/src/cli.js @@ -1,6 +1,6 @@ 'use strict' -const { common, hostInfo, warning } = require('./common') +const { info, hostInfo, warning } = require('./common') const fs = require('fs-extra') const { initializeProxy } = require('@electron/get') const packager = require('..') @@ -127,9 +127,9 @@ module.exports = { try { const appPaths = await packager(args) if (appPaths.length > 1) { - common.info(`Wrote new apps to:\n${appPaths.join('\n')}`) + info(`Wrote new apps to:\n${appPaths.join('\n')}`) } else if (appPaths.length === 1) { - common.info('Wrote new app to', appPaths[0]) + info('Wrote new app to', appPaths[0]) } } catch (err) { if (err.message) {