Skip to content

Commit

Permalink
Update src/client/opamConfigCommand.ml
Browse files Browse the repository at this point in the history
Co-authored-by: Kate <[email protected]>
  • Loading branch information
rjbou and kit-ty-kate authored Nov 28, 2024
1 parent 49f87e4 commit 3b3aabb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/opamConfigCommand.ml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ let print_bindingss_env output env =
let rec aux = function
| [] -> ()
| (k, v, _) :: r ->
if not (List.exists (fun (k1, _, _) -> k = k1) r) then
if not (List.exists (fun (k1, _, _) -> (k : string) = (k1 : string)) r) then
Printf.ksprintf output "%s=%s\n" k v;
aux r
in
Expand Down

0 comments on commit 3b3aabb

Please sign in to comment.