Skip to content

Commit

Permalink
fix(agoric): don't write command to stdout (it breaks pipelines)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelfig committed Jan 11, 2022
1 parent 3464e52 commit fa77c71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/agoric-cli/src/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export const makePspawn = ({
return args.join(' ');
};

log.log(color('blueBright', cmd, ...cargs));
log.warn(color('blueBright', cmd, ...cargs));
const cp = spawn(cmd, cargs, { stdio, env, ...rest });
const pr = new Promise((resolve, _reject) => {
cp.on('exit', resolve);
Expand Down

0 comments on commit fa77c71

Please sign in to comment.