diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2021-09-22 17:25:25 +0200 |
---|---|---|
committer | Eelco Dolstra <edolstra@gmail.com> | 2021-09-22 17:25:25 +0200 |
commit | d1bf7431bbb9c38bdb577661d8511d506a3955c4 (patch) | |
tree | d5a9f583833345f30aaa958eab01cae40e062874 /src/libfetchers/git.cc | |
parent | bcd73ebf60bb9ba6cb09f8df4366d5474c16e4a4 (diff) |
Revert "Merge pull request #4922 from nrdxp/default-submodules"
This reverts commit 6678e98411cd3bfe8143a4ba1b35d1451babce32, reversing
changes made to 90b2dd570cbd8313a8cf45b3cf66ddef2bb06e07.
Diffstat (limited to 'src/libfetchers/git.cc')
-rw-r--r-- | src/libfetchers/git.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc index 5af38dde9..bfc58f7a1 100644 --- a/src/libfetchers/git.cc +++ b/src/libfetchers/git.cc @@ -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"; |