diff options
author | Bert Belder <bertbelder@gmail.com> | 2019-09-17 17:49:38 +0200 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2019-09-17 18:38:51 +0200 |
commit | 29b9f90d90c98d5ab10a153c557ffc011c341ea9 (patch) | |
tree | 9a294c3bbd0348244f22879d7d3a4dda8340b403 | |
parent | 60a2b5a8d07ca2ab8f7438a3951d7b4c1f96e2f4 (diff) |
Use shallow submodules, don't clone Typescript recursively
-rw-r--r-- | .appveyor.yml | 2 | ||||
-rw-r--r-- | .gitmodules | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 8522cfaa0..8b10be68d 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -94,7 +94,7 @@ install: # Clone the third_party submodule. - ps: |- try { - Exec { & git submodule update --init --force --depth 1 } + Exec { & git submodule update --init --force --depth 1 --jobs 4 } } catch { # Git will fail if the `third_party` directory was restored from cache, # but the `.git/modules` directory wasn't. Rebuild it from scratch. diff --git a/.gitmodules b/.gitmodules index 442d5c486..2c39cc3e9 100644 --- a/.gitmodules +++ b/.gitmodules @@ -10,3 +10,5 @@ [submodule "typescript"] path = deno_typescript/typescript url = https://github.com/microsoft/TypeScript.git + fetchRecurseSubmodules = false + shallow = true |