emit exit code only in lint mode

This commit is contained in:
Tobias Koppers 2018-09-20 18:00:11 +02:00
parent 1f6b92de3e
commit 44955b7600
3 changed files with 3 additions and 3 deletions

View File

@ -65,8 +65,8 @@ const makeDefinitionsForSchema = absSchemaPath => {
"/" "/"
)}.d.ts need to be updated` )}.d.ts need to be updated`
); );
process.exitCode = 1;
} }
process.exitCode = 1;
} }
}, },
err => { err => {

View File

@ -124,8 +124,8 @@ const formatSchema = schemaPath => {
console.error( console.error(
`schemas/${basename.replace(/\\/g, "/")} need to be updated` `schemas/${basename.replace(/\\/g, "/")} need to be updated`
); );
process.exitCode = 1;
} }
process.exitCode = 1;
} }
}); });
}; };

View File

@ -137,8 +137,8 @@ for (const sourceFile of program.getSourceFiles()) {
); );
} }
console.log(); console.log();
process.exitCode = 1;
} }
process.exitCode = 1;
} }
} }
} }