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.
require
1 parent c3fcadd commit 052ab9fCopy full SHA for 052ab9f
src/client/debugger/DebugClients/LocalDebugClient.ts
@@ -7,7 +7,7 @@ import * as child_process from 'child_process';
7
import {LaunchRequestArguments} from '../Common/Contracts';
8
import {DebugClient, DebugType} from './DebugClient';
9
import * as fs from 'fs';
10
-import {open} from '../../Common/open';
+import {open} from '../../common/open';
11
12
export class LocalDebugClient extends DebugClient {
13
protected args: LaunchRequestArguments;
@@ -114,4 +114,4 @@ export class LocalDebugClient extends DebugClient {
114
var programArgs = Array.isArray(this.args.args) && this.args.args.length > 0 ? this.args.args : [];
115
return [vsDebugOptions, this.args.program].concat(programArgs);
116
}
117
-}
+}
0 commit comments