We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
clang-format
1 parent 8a85b5c commit 3a70547Copy full SHA for 3a70547
arduino-ide-extension/src/node/exec-util.ts
@@ -62,7 +62,7 @@ export function spawnCommand(
62
});
63
cp.on('exit', (code, signal) => {
64
if (code === 0) {
65
- const result = Buffer.concat(outBuffers).toString('utf8').trim();
+ const result = Buffer.concat(outBuffers).toString('utf8');
66
resolve(result);
67
return;
68
}
0 commit comments