packager icon indicating copy to clipboard operation
packager copied to clipboard

Packager outputs to console error on successful build.

Open nohbdy1 opened this issue 2 years ago • 2 comments

In common.js

function info (message, quiet) { if (!quiet) { console.error(message) } }

should be

function info (message, quiet) { if (!quiet) { console.info(message) } }

nohbdy1 avatar May 13 '23 00:05 nohbdy1

👋 Thanks for opening your first issue here! If you have a question about using Electron Packager, read the support docs. If you're reporting a 🐞 bug, please make sure you include steps to reproduce it. Development and issue triage is community-driven, so please be patient and we will get back to you as soon as we can.

To help make it easier for us to investigate your issue, please follow the contributing guidelines.

welcome[bot] avatar May 13 '23 00:05 welcome[bot]

please review my pr and merge it if everything is fine

bilalswiftsolutions avatar Jul 07 '23 14:07 bilalswiftsolutions