Skip to content

Commit

Permalink
Reduce checkout size of submodules
Browse files Browse the repository at this point in the history
  • Loading branch information
mattleibow authored Feb 5, 2024
1 parent 04ff977 commit 4210ab8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/winui/ANGLE.cake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ void InitializeAngle(string branch, DirectoryPath ANGLE_PATH, DirectoryPath WINA
continue;

RunProcess("git", new ProcessSettings {
Arguments = $"submodule update --init --recursive {submodule}",
Arguments = $"submodule update --init --recursive --depth 1 --single-branch {submodule}",
WorkingDirectory = ANGLE_PATH.FullPath,
});
}
Expand Down

0 comments on commit 4210ab8

Please sign in to comment.