Skip to content

Commit

Permalink
Fix post var solve issue
Browse files Browse the repository at this point in the history
  • Loading branch information
rizo committed Sep 4, 2024
1 parent b1bc433 commit 00720d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
- Fix dep resolution issue in solver where `post` was not set to [true].
- Fix `./opam` and `./opam/$pkg.opam` file lookup (#15). Thanks to @dbuenzli
for suggestions.
2 changes: 1 addition & 1 deletion src/onix_core/Solver_context.ml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ module Resolvers = struct
[
Scope.resolve_opam_pkg opam_pkg;
Scope.resolve_global_host;
Scope.resolve_dep ~test ~doc ~dev_setup;
Scope.resolve_dep ~post:true ~test ~doc ~dev_setup;
]
end

Expand Down

0 comments on commit 00720d8

Please sign in to comment.