From 29b9f90d90c98d5ab10a153c557ffc011c341ea9 Mon Sep 17 00:00:00 2001 From: Bert Belder Date: Tue, 17 Sep 2019 17:49:38 +0200 Subject: [PATCH] Use shallow submodules, don't clone Typescript recursively --- .appveyor.yml | 2 +- .gitmodules | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.appveyor.yml b/.appveyor.yml index 8522cfaa0b..8b10be68de 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 442d5c486c..2c39cc3e94 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