fix: fail chromium roller link in non-CI environments

This commit is contained in:
Samuel Maddock
2026-04-08 17:20:13 -04:00
parent 94f379d860
commit 0e62d9f7ab

View File

@@ -277,7 +277,7 @@ async function main () {
if (hasErrors) {
console.log(' NOTE: Add "Skip-Lint: <reason>" to a commit message to skip linting that commit.');
}
process.exit(hasErrors && process.env.CI ? 1 : 0);
process.exit(hasErrors ? 1 : 0);
}
if ((await fs.realpath(process.argv[1])) === fileURLToPath(import.meta.url)) {