Skip to content
This repository was archived by the owner on Feb 27, 2025. It is now read-only.

Commit 4799cc8

Browse files
committed
Fix #5
1 parent 146a571 commit 4799cc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/debug/debug.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ class OCamlDebugSession extends DebugSession {
140140
protected async launchRequest(response: DebugProtocol.LaunchResponse, args: LaunchRequestArguments) {
141141
let ocdArgs = [];
142142
if (args.cd) {
143-
ocdArgs.push('cd', args.cd);
143+
ocdArgs.push('-cd', args.cd);
144144
}
145145

146146
this._remoteMode = !!args.socket;

0 commit comments

Comments
 (0)