From ac4302141cdf41548513c84bc0886597a46f01a8 Mon Sep 17 00:00:00 2001 From: jyelon Date: Tue, 5 May 2026 18:19:30 -0400 Subject: [PATCH] Add gitdeps cache --- .gitignore | 1 + build.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a56ce570..2e725772 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ UnrealEngine *.vcproj .ignore +.gitdeps-cache/** .vscode/** Config/** Saved/** diff --git a/build.py b/build.py index 01c31c7b..accd9c3f 100755 --- a/build.py +++ b/build.py @@ -271,7 +271,7 @@ def run_unrealengine_setup_bat_replacement(): shell(UNREALENGINE, "Engine/Binaries/DotNET/GitDependencies/win-x64/GitDependencies.exe") shell(UNREALENGINE, "Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe /quiet /norestart") else: - shell(UNREALENGINE, "Engine/Build/BatchFiles/Linux/GitDependencies.sh") + shell(UNREALENGINE, f"Engine/Build/BatchFiles/Linux/GitDependencies.sh --cache={INTEGRATION}/.gitdeps-cache") shell(f"{UNREALENGINE}/Engine/Build/BatchFiles/Linux", "./Setup.sh") touch.write_text("Downloaded")