Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 36a7be0

Browse filesBrowse files
nathan-muirBen Newman
authored andcommitted
DebugEntry - Make debugging work with node-inspector v0.12.5.
The matching of the `debug listening on port` message was broken when v0.12.5 of node-inspector changed the capitalisation of "debug" to "Debug". The matching is now case-insensitive.
1 parent dfbbdc8 commit 36a7be0
Copy full SHA for 36a7be0

File tree

Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+1
-1
lines changed

‎tools/inspector.js

Copy file name to clipboardExpand all lines: tools/inspector.js
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ DEp.connectToChildProcess = function connectToChildProcess(child) {
145145
// port (not debugPort!), and create a connection to that port so that
146146
// the child process can communicate with node-inspector.
147147
child.stderr.on("data", function onData(buffer) {
148-
var match = /debugger listening on port (\d+)/
148+
var match = /debugger listening on port (\d+)/i
149149
.exec(buffer.toString("utf8"));
150150
if (match) {
151151
child.stderr.removeListener("data", onData);

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.