Skip to content

Commit a801be7

Browse files
read++
1 parent af008fd commit a801be7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli-device-node/lib/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ const runPty = async (cmd, inputs, options = {}) => new Promise((resolve, reject
9898
ptyProcess.onExit(({ exitCode: code, signal }) => {
9999
const output = Buffer.concat(chunks).toString('utf-8');
100100
if (code !== 0) {
101-
const err = new Error(`'${cmd}'exited with code ${code} and signal ${signal}`);
101+
const err = new Error(`'${cmd}' exited with code ${code} and signal ${signal}`);
102102
err.cmd = cmd;
103103
err.signal = signal;
104104
err.code = code;

0 commit comments

Comments
 (0)