Skip to content

Commit 1eefd21

Browse files
committed
fix: args to array for startup signal log
1 parent 453f4c1 commit 1eefd21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ function init () {
6262
})
6363

6464
app.on('second-instance', (event, argv, workingDirectory) => {
65-
console.log('Got signal from second instance', argv)
65+
console.log('Got signal from second instance', [...argv])
6666
const urls = urlsFromArgs(argv.slice(1), workingDirectory)
6767
urls.map((url) => windowManager.open({ url }))
6868
})

0 commit comments

Comments
 (0)