From f6fe31e3538c158871dd7df53220cc762949fc88 Mon Sep 17 00:00:00 2001 From: afinch7 Date: Tue, 28 May 2019 12:41:27 -0400 Subject: [PATCH] change git clone depth for appveyor to 2 --- .appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 348bfdad3eea2f..964e5d91137994 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -115,12 +115,12 @@ install: # Clone the third_party submodule. - ps: |- try { - Exec { & git submodule update --init --force --depth 1 } + Exec { & git submodule update --init --force --depth 2 } } catch { # Git will fail if the `third_party` directory was restored from cache, # but the `.git/modules` directory wasn't. Rebuild it from scratch. Delete-Tree $env:DENO_THIRD_PARTY_PATH - Exec -NoNewLines { & git submodule update --init --force --depth 1 } + Exec -NoNewLines { & git submodule update --init --force --depth 2 } } # Configure depot_tools and add it to the search path. This is necessary