diff --git a/util/executeCommand.js b/util/executeCommand.js index 25bfd1d..ee4cce6 100644 --- a/util/executeCommand.js +++ b/util/executeCommand.js @@ -4,7 +4,7 @@ module.exports = function(command, commandArgs, verbose=false) { console.log("Executing:", command, commandArgs.join(" ")); try { const output = execFileSync(command, commandArgs, {encoding: 'utf8'}) - if (output.length != 0 && verbose) + if (output.length !== 0 && verbose) console.log(output) } catch (error) { console.error(`Error executing ${command} command:`, error);