Skip to content

Commit

Permalink
Merge pull request #721 from prey/Fix-changing-util-puts
Browse files Browse the repository at this point in the history
changing puts function
  • Loading branch information
SoraKenji authored Mar 8, 2023
2 parents 65e0144 + d0ef6fd commit 5abe113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/conf/utils/run_synced.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = function(cmd, args, opts, cb) {

var print = function(str) {
if (process.stdout.writable)
util.puts(str);
console.log(str);
}

var done = function(e, code) {
Expand Down

0 comments on commit 5abe113

Please sign in to comment.