Skip to content

Commit

Permalink
Fix #5
Browse files Browse the repository at this point in the history
  • Loading branch information
hackwaly committed Jun 28, 2016
1 parent 146a571 commit 4799cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/debug/debug.ts
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class OCamlDebugSession extends DebugSession {
protected async launchRequest(response: DebugProtocol.LaunchResponse, args: LaunchRequestArguments) {
let ocdArgs = [];
if (args.cd) {
ocdArgs.push('cd', args.cd);
ocdArgs.push('-cd', args.cd);
}

this._remoteMode = !!args.socket;
Expand Down

0 comments on commit 4799cc8

Please sign in to comment.