Skip to content

Commit

Permalink
fix(core): remove implementation detail from warning
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Feb 8, 2024
1 parent aa622ba commit 18efd62
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/nx/src/executors/run-commands/run-commands.impl.ts
Expand Up @@ -136,7 +136,7 @@ async function runInParallel(
const r = await Promise.race(procs);
if (!r.result) {
process.stderr.write(
`Warning: run-commands command "${r.command}" exited with non-zero status code`
`Warning: command "${r.command}" exited with non-zero status code`
);
return false;
} else {
Expand All @@ -148,7 +148,7 @@ async function runInParallel(
if (failed.length > 0) {
failed.forEach((f) => {
process.stderr.write(
`Warning: run-commands command "${f.command}" exited with non-zero status code`
`Warning: command "${f.command}" exited with non-zero status code`
);
});
return false;
Expand Down Expand Up @@ -200,7 +200,7 @@ async function runSerially(
);
if (!success) {
process.stderr.write(
`Warning: run-commands command "${c.command}" exited with non-zero status code`
`Warning: command "${c.command}" exited with non-zero status code`
);
return false;
}
Expand Down

0 comments on commit 18efd62

Please sign in to comment.