Skip to content

Commit

Permalink
💬 Change from stack to message in try catch for licenses script
Browse files Browse the repository at this point in the history
  • Loading branch information
kierandrewett committed Jul 20, 2023
1 parent 96e2fa4 commit 6fa79b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/licences.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const main = async () => {
try {
return compareVersions(a.version, b.version)
} catch (e) {
console.warn("Warning: ", e.stack);
console.warn("Warning: ", e.message);
return -1;
}
});
Expand Down

0 comments on commit 6fa79b3

Please sign in to comment.