Skip to content

Commit

Permalink
use console.error for errors reported by cli
Browse files Browse the repository at this point in the history
  • Loading branch information
mansona committed Nov 18, 2024
1 parent 3c2015c commit 75b8d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ program

// if verifiedOwners is empty, exit with error
if (verifiedOwners.length < 1) {
console.log(`None of the users/teams specified own the path ${checkPath}`);
console.error(`None of the users/teams specified own the path ${checkPath}`);
process.exit(1);
}

Expand Down

0 comments on commit 75b8d3b

Please sign in to comment.