mirror of
https://github.com/NixOS/nix
synced 2025-06-26 20:01:15 +02:00
libfetchers/git: fetch submodules by default
This commit is contained in:
parent
e6150de90d
commit
769ca4e26d
3 changed files with 8 additions and 8 deletions
|
@ -172,7 +172,7 @@ struct GitInputScheme : InputScheme
|
|||
Input input(_input);
|
||||
|
||||
bool shallow = maybeGetBoolAttr(input.attrs, "shallow").value_or(false);
|
||||
bool submodules = maybeGetBoolAttr(input.attrs, "submodules").value_or(false);
|
||||
bool submodules = maybeGetBoolAttr(input.attrs, "submodules").value_or(true);
|
||||
bool allRefs = maybeGetBoolAttr(input.attrs, "allRefs").value_or(false);
|
||||
|
||||
std::string cacheType = "git";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue