1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 16:51:15 +02:00

Revert "Merge pull request #4922 from nrdxp/default-submodules"

This reverts commit 6678e98411, reversing
changes made to 90b2dd570c.
This commit is contained in:
Eelco Dolstra 2021-09-22 17:25:25 +02:00
parent bcd73ebf60
commit d1bf7431bb
3 changed files with 8 additions and 8 deletions

View file

@ -173,7 +173,7 @@ struct GitInputScheme : InputScheme
std::string name = input.getName();
bool shallow = maybeGetBoolAttr(input.attrs, "shallow").value_or(false);
bool submodules = maybeGetBoolAttr(input.attrs, "submodules").value_or(true);
bool submodules = maybeGetBoolAttr(input.attrs, "submodules").value_or(false);
bool allRefs = maybeGetBoolAttr(input.attrs, "allRefs").value_or(false);
std::string cacheType = "git";