Remove ansi codes in script run (#3132)

This commit is contained in:
Ivan Starkov
2024-02-03 08:46:44 +01:00
committed by GitHub
parent f34165dba5
commit 96c14aaefb
+6 -1
View File
@@ -411,7 +411,12 @@ async function run(
id,
})
).result ?? {};
log.info(result);
if (opts.silent) {
console.log(result);
} else {
log.info(result);
}
break;
} catch {