Hi everyone,
In a current project I’m using Pkg.add(url="url/to/pkg", subdir = "in/this/subdir")
. Now with 1.11 there is a [sources]
section of the Project.toml
file that makes this approach just a little bit nicer (e.g. I can delete the Manifest.toml
without having to using Pkg.add
again).
However, it appears that the subdir
kwarg is not replicated in the source specification.
e.g.
[sources]
UnregPkg = {url="url/to/pkg", subdir = "in/this/subdir"}
doesn’t work and fails with
ERROR: Invalid key
subdir
insource
section
Is there a work around? Am I missing something? Or should I add an issue to Pkg.jl
?