Most dune commands take directories as a positional argument, e.g.
dune build <dir>
dune runtest <dir>
dune utop <dir>
However I cannot do dune clean <dir>, instead I have to do something like (cd <dir> && dune clean). Is there a particular reason why this is the case?
Most
dunecommands take directories as a positional argument, e.g.However I cannot do
dune clean <dir>, instead I have to do something like(cd <dir> && dune clean). Is there a particular reason why this is the case?