Skip to content

Commit

Permalink
πŸ’š (#2016)
Browse files Browse the repository at this point in the history
  • Loading branch information
wcandillon authored Nov 30, 2023
1 parent ac40c2b commit 83e19d3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/build-skia.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}`);
Expand All @@ -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)) {
Expand Down

0 comments on commit 83e19d3

Please sign in to comment.