You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently if one runs dune build -w in one terminal and tries to run dune describe in another, the latter fails:
$ dune describe
Error: A running dune (pid: 586836) instance has locked the build directory.
If this is not the case, please delete _build/.lock
I understand describe is a "read-only" subcommand, so I wonder if the restrictions / limitations that forced the introduction of the global lock could be relaxed in this case?
Maybe other subcommands that don't write in _build could see this limitation lifted (e.g. dune fmt)
The text was updated successfully, but these errors were encountered:
Currently if one runs
dune build -w
in one terminal and tries to rundune describe
in another, the latter fails:I understand
describe
is a "read-only" subcommand, so I wonder if the restrictions / limitations that forced the introduction of the global lock could be relaxed in this case?Maybe other subcommands that don't write in
_build
could see this limitation lifted (e.g.dune fmt
)The text was updated successfully, but these errors were encountered: