Skip to content

Commit

Permalink
Fix issue with #395
Browse files Browse the repository at this point in the history
  • Loading branch information
samoht committed Sep 3, 2023
1 parent fe0ae6e commit 111b20c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/opam_solve.ml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ module Opam_monorepo_context (Base_context : BASE_CONTEXT) :
match opam_res with
| Ok opam ->
if Opam.avoid_version opam then (regular, e :: avoid, broken)
else (regular, avoid, e :: broken)
else (e :: regular, avoid, broken)
| Error _ -> (regular, avoid, e :: broken))
in
List.rev_append regular (List.rev_append avoid broken)
Expand Down

0 comments on commit 111b20c

Please sign in to comment.