Compare with strict equality
All checks were successful
CI / CI (push) Successful in 22s

This commit is contained in:
SileNce5k 2025-06-21 17:50:29 +02:00
parent e15eaf38b0
commit f5819e4df0
Signed by: SileNce
GPG key ID: B0A142BB4291B204

View file

@ -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);