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 be89f9d commit ef5496dCopy full SHA for ef5496d
lib/helper.js
@@ -8,7 +8,7 @@ exports.findNodeProcess = function* (filterFn) {
8
const command = isWin ?
9
'wmic Path win32_process Where "Name = \'node.exe\'" Get CommandLine,ProcessId' :
10
// command, cmd are alias of args, not POSIX standard, so we use args
11
- 'ps -eo "pid,args"';
+ 'ps -wweo "pid,args"';
12
const stdio = yield runScript(command, { stdio: 'pipe' });
13
const processList = stdio.stdout.toString().split('\n')
14
.reduce((arr, line) => {
0 commit comments