diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-11-09 15:43:04 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-09 15:43:04 +0100 |
commit | c650c5c720d4ab7aa2150f0047bafa8ac7a01b61 (patch) | |
tree | 25922f90fd83edc10eb3571ec44c106645729d6d | |
parent | aaf7166a9d528636b11a2ad835238589bf650b6e (diff) |
build: use shallow clone of third_party (#8295)
"third_party/" is a git submodule pointing to "deno_third_party" repository.
The git history of that repo is quite heavy as it historically contained
typescript, node_modules and python_packages directories, but now there
are only 11 binaries in there. Setting this attribute should speed up fresh clones.
-rw-r--r-- | .gitmodules | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitmodules b/.gitmodules index fc18f291e..cd52dfda3 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,6 +1,7 @@ [submodule "deno_third_party"] path = third_party url = https://github.com/denoland/deno_third_party.git + shallow = true [submodule "std/wasi/testdata"] path = std/wasi/testdata url = https://github.com/khronosproject/wasi-test-suite.git |