We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28981f3 commit 102ffc1Copy full SHA for 102ffc1
Extension/src/Debugger/attachToProcess.ts
@@ -123,7 +123,7 @@ export class RemoteAttachPicker {
123
const command: string = `sh -c 'uname && if [ $(uname) = "Linux" ] ; then ${PsProcessParser.psLinuxCommand} ; elif [ $(uname) = "Darwin" ] ; ` +
124
`then ${PsProcessParser.psDarwinCommand}; fi'`;
125
126
- return execChildProcess(`${pipeCmd} "${command}"`, null, this._channel).then(output => {
+ return execChildProcess(`${pipeCmd} '${command}'`, null, this._channel).then(output => {
127
// OS will be on first line
128
// Processess will follow if listed
129
let lines: string[] = output.split(/\r?\n/);
0 commit comments