The build, runtest, external-lib-deps and maybe other commands recognize the comma separated list of packages in the --for-release-of-packages knob. But the install command seems to ignore that knob. Instead, it requires a space separated list of packages.
Is this intentional?
For rpm package build I would like to use a consistent set of options, like for qcheck:
We probably didn't think of this use case. dune install is a bit different in the sense that it doesn't build anything, but supporting this seems fine to me.
The
build
,runtest
,external-lib-deps
and maybe other commands recognize the comma separated list of packages in the--for-release-of-packages
knob. But theinstall
command seems to ignore that knob. Instead, it requires a space separated list of packages.Is this intentional?
For rpm package build I would like to use a consistent set of options, like for
qcheck
:However, the
install
command requires an extra${pkgs//,/ }
.