diff options
author | snek <the@snek.dev> | 2024-05-21 15:50:59 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-21 15:50:59 -0700 |
commit | 8f2d17140468512372ccd3aeebb0d505c607b977 (patch) | |
tree | b8a4e2d10a0cd3121d637e399b111b0c3dd8b32a /tools/copyright_checker.js | |
parent | db82e8b557c9836481618a73cec7c014903ff256 (diff) |
feat(node): buffer isUtf8/isAscii (#23928)
Fixes: https://github.com/denoland/deno/issues/23657
Implements `isUtf8` and `isAscii` as ops.
Diffstat (limited to 'tools/copyright_checker.js')
-rwxr-xr-x | tools/copyright_checker.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/copyright_checker.js b/tools/copyright_checker.js index 2cabab6fa..4ffde77c1 100755 --- a/tools/copyright_checker.js +++ b/tools/copyright_checker.js @@ -103,6 +103,7 @@ export async function checkCopyright() { // show all the errors at the same time to prevent overlap with // other running scripts that may be outputting console.error(errors.join("\n")); + console.error(`Expected copyright:\n\`\`\`\n${COPYRIGHT_LINE}\n\`\`\``); throw new Error(`Copyright checker had ${errors.length} errors.`); } } |