| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 22afb7c commit 193ea8f
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -16,7 +16,9 @@ function launchTarget(...args) { | |||
| 16 | 16 | }; | |
| 17 | 17 | childProc.on('exit', onExit); | |
| 18 | 18 | childProc.stderr.setEncoding('utf8'); | |
| 19 | - childProc.stderr.on('data', (data) => { | ||
| 19 | + let data = ''; | ||
| 20 | + childProc.stderr.on('data', (chunk) => { | ||
| 21 | + data += chunk; | ||
| 20 | 22 | const ret = kDebuggerMsgReg.exec(data); | |
| 21 | 23 | childProc.removeListener('exit', onExit); | |
| 22 | 24 | if (ret) { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments