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 your source bundle uses git submodules, you either need to use fetchgit or manually string together fetchFromGitHub invocations to plug them into the relevant locations.
The former already works, but is less efficient than it needs to be. The latter could be done by calling fetchFromGitHub recursively, parsing the .gitmodules file, and pulling out submodules as needed. The submodules could themselves be fetched with the equivalent of fetchgit (with non-GH submodules, assuming its builder script is reusable) or fetchFromGitHub (if the submodules come from GH)
The text was updated successfully, but these errors were encountered:
Currently if your source bundle uses git submodules, you either need to use
fetchgit
or manually string togetherfetchFromGitHub
invocations to plug them into the relevant locations.The former already works, but is less efficient than it needs to be. The latter could be done by calling
fetchFromGitHub
recursively, parsing the .gitmodules file, and pulling out submodules as needed. The submodules could themselves be fetched with the equivalent offetchgit
(with non-GH submodules, assuming its builder script is reusable) orfetchFromGitHub
(if the submodules come from GH)The text was updated successfully, but these errors were encountered: