File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 22
33## Unreleased
44
5+ - Fix utop detection by using ` -version ` flag instead of ` --version ` to align
6+ with OCaml toolchain conventions. This ensures the extension properly detects
7+ and uses utop when running code selections. (#1938 )
8+
59## 1.32.2
610
711- Reword DPM notification to inform users DPM is available and not selected. (#1930 )
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ let name = "REPL"
5454
5555let has_utop (sandbox : Sandbox.t ) =
5656 let open Promise.Syntax in
57- let cmd = Sandbox. get_command sandbox " utop" [ " -- version" ] `Tool in
57+ let cmd = Sandbox. get_command sandbox " utop" [ " -version" ] `Tool in
5858 let cwd = Sandbox. workspace_root () in
5959 let + result = Cmd. output ?cwd cmd in
6060 match result with
You can’t perform that action at this time.
0 commit comments