Print formatted error in another location.

This commit is contained in:
Dillon Kearns 2022-11-30 09:02:30 -08:00
parent 2d91992c6e
commit 088e9b297d

View File

@ -208,7 +208,7 @@ async function run(options) {
);
} catch (error) {
if (error) {
console.error(error);
console.error(restoreColorSafe(error));
}
buildError = true;
process.exitCode = 1;