Skip to content

Commit 5c0102a

Browse files
fix: properly import info logger (#1405)
1 parent 0d692d7 commit 5c0102a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/cli.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'use strict'
22

3-
const { common, hostInfo, warning } = require('./common')
3+
const { info, hostInfo, warning } = require('./common')
44
const fs = require('fs-extra')
55
const { initializeProxy } = require('@electron/get')
66
const packager = require('..')
@@ -127,9 +127,9 @@ module.exports = {
127127
try {
128128
const appPaths = await packager(args)
129129
if (appPaths.length > 1) {
130-
common.info(`Wrote new apps to:\n${appPaths.join('\n')}`)
130+
info(`Wrote new apps to:\n${appPaths.join('\n')}`)
131131
} else if (appPaths.length === 1) {
132-
common.info('Wrote new app to', appPaths[0])
132+
info('Wrote new app to', appPaths[0])
133133
}
134134
} catch (err) {
135135
if (err.message) {

0 commit comments

Comments
 (0)