-
As far as I can tell it currently is mandatory to pull in all language submodules in order to build helix. Is it possible for me to only check out some of the the language submodules and get helix to build? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I suggest shallow cloning via I think in the long run we want to stop pulling in submodules and instead have a separate |
Beta Was this translation helpful? Give feedback.
I suggest shallow cloning via
--shallow-submodules
, but you can also go and clone the main repo without submodules, then fetch only the ones you want underhelix-syntax/languages
.I think in the long run we want to stop pulling in submodules and instead have a separate
cargo xtask
that will take a list of<url> <sha>
, fetch & compile. That will make distribution packaging a bit more convoluted though.