linting
This commit is contained in:
parent
04e7315d4d
commit
3ca05c0906
@ -103,7 +103,9 @@ export async function sh(
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
proc.on("exit", (code, signal) => {
|
proc.on("exit", (code, signal) => {
|
||||||
|
if (code != 0 && context.verbose) {
|
||||||
console.log(`child process exited (${code} / ${signal})`);
|
console.log(`child process exited (${code} / ${signal})`);
|
||||||
|
}
|
||||||
const bOut = Buffer.concat(stdoutChunks).toString("utf-8");
|
const bOut = Buffer.concat(stdoutChunks).toString("utf-8");
|
||||||
const bErr = Buffer.concat(stderrChunks).toString("utf-8");
|
const bErr = Buffer.concat(stderrChunks).toString("utf-8");
|
||||||
resolve({
|
resolve({
|
||||||
|
Loading…
Reference in New Issue
Block a user