Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
(sexplib (>= v0.14.0))
(csexp (>= 1.3.2))
(lru (>= 0.3.0))
(dap (>= 1.0.6))))
(dap (>= 1.1.0))))
2 changes: 1 addition & 1 deletion earlybird.opam
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ depends: [
"sexplib" {>= "v0.14.0"}
"csexp" {>= "1.3.2"}
"lru" {>= "0.3.0"}
"dap" {>= "1.0.6"}
"dap" {>= "1.1.0"}
"odoc" {with-doc}
]
build: [
Expand Down
3 changes: 2 additions & 1 deletion src/adapter/state_initialized.ml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@ let spawn_terminal ~kind ~rpc ?name ?env ?cwd prog args =
Debug_rpc.exec_command rpc
(module Run_in_terminal_command)
Run_in_terminal_command.Arguments.
{ kind = Some kind; title = name; cwd; env; args = prog :: args }
{ kind = Some kind; title = name; cwd; env; args = prog :: args;
args_can_be_interpreted_by_shell = None }
in
Lwt.return ());
Lwt.return ()
Expand Down
Loading