Stephen Sherratt
Stephen Sherratt
This should work as long as the opam repoo is currently checked out. Currently it produces the error: ``` $ dune pkg lock fatal: unable to access 'https://github.com/ocaml-dune/opam-overlays.git/': Could not...
Dune allows artifacts to be built without a lockdir present, but the resulting artifacts may be different when built with a lockdir present, vs when built without a lockdir present....
If the url of a pin stanza is a non-existent repo, running `dune pkg lock` will print `Username for 'https://github.com':`. Dune will then hang and not respond to ctrl+c. E.g....
This fixes the issue where we couldn't build `ocamlformat` with toolchains. In the process of debugging that issue I noticed that if a dune project doesn't depend on any opam...
The `:=` and `=:` operators inside the `withenv` action do not add leading/trailing separators when operating on unset variables. These operators are documented in opam's manual as: > += or...
Vim treats the .pkg file extension as "Virata AConfig Configuration Script Syntax" (https://www.vim.org/scripts/script.php?script_id=930). This leads to confusing highlighting E.g. the `%` character is treated as the start of a comment,...
There are several places where a dune config will use a field named "name", and if such a field is omitted, prior to this change dune would print the error...
This adds a test reproducing a bug with exec watch mode where dune is unable to find an executable if it's specified with a relative path when the user's cwd...
This fixes a bug where running an executable from the current project with `dune exec --watch` would be unable to find the executable unless the command was run from the...
Lately I've been running into issues working on dune package management where certain key low-level packages are incompatible with dune's sandboxing rules. Raising this issue so we can have a...