Skip to content

Commit 4219a88

Browse files
committed
Merge pull request DonJayamanne#21 from danielgindi/patch-1
Allow debugger to run on case-sensitive fs's (i.e. Ubuntu)
2 parents e87c780 + 052ab9f commit 4219a88

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
"python"
6161
]
6262
},
63-
"program": "./out/client/debugger/main.js",
63+
"program": "./out/client/debugger/Main.js",
6464
"runtime": "node",
6565
"configurationAttributes": {
6666
"launch": {

src/client/debugger/DebugClients/LocalDebugClient.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as child_process from 'child_process';
77
import {LaunchRequestArguments} from '../Common/Contracts';
88
import {DebugClient, DebugType} from './DebugClient';
99
import * as fs from 'fs';
10-
import {open} from '../../Common/open';
10+
import {open} from '../../common/open';
1111

1212
export class LocalDebugClient extends DebugClient {
1313
protected args: LaunchRequestArguments;
@@ -114,4 +114,4 @@ export class LocalDebugClient extends DebugClient {
114114
var programArgs = Array.isArray(this.args.args) && this.args.args.length > 0 ? this.args.args : [];
115115
return [vsDebugOptions, this.args.program].concat(programArgs);
116116
}
117-
}
117+
}

0 commit comments

Comments
 (0)