From 83e19d39ecde424d913c6937c98cf9b98566f2f2 Mon Sep 17 00:00:00 2001 From: William Candillon Date: Thu, 30 Nov 2023 15:37:17 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A=20(#2016)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/build-skia.ts | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/scripts/build-skia.ts b/scripts/build-skia.ts index 43a18464b4..c5a3a72216 100644 --- a/scripts/build-skia.ts +++ b/scripts/build-skia.ts @@ -182,6 +182,13 @@ try { exit(1); } + // Run glient sync + console.log("Running gclient sync..."); + + // Start by running sync + executeCmdSync("PATH=../depot_tools/:$PATH python3 tools/git-sync-deps"); + console.log("gclient sync done"); + // lets check for any dependencies if (platform.dependencies) { console.log(`Found dependencies for platform ${SelectedPlatform}`); @@ -191,13 +198,6 @@ try { }); } - // Run glient sync - console.log("Running gclient sync..."); - - // Start by running sync - executeCmdSync("PATH=../depot_tools/:$PATH python3 tools/git-sync-deps"); - console.log("gclient sync done"); - try { // Configure the platform if (!configurePlatform(SelectedPlatform, SelectedTarget)) {