Add gitdeps cache

This commit is contained in:
2026-05-05 18:19:30 -04:00
parent e16e0978b0
commit ac4302141c
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -27,6 +27,7 @@ UnrealEngine
*.vcproj *.vcproj
.ignore .ignore
.gitdeps-cache/**
.vscode/** .vscode/**
Config/** Config/**
Saved/** Saved/**

View File

@@ -271,7 +271,7 @@ def run_unrealengine_setup_bat_replacement():
shell(UNREALENGINE, "Engine/Binaries/DotNET/GitDependencies/win-x64/GitDependencies.exe") shell(UNREALENGINE, "Engine/Binaries/DotNET/GitDependencies/win-x64/GitDependencies.exe")
shell(UNREALENGINE, "Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe /quiet /norestart") shell(UNREALENGINE, "Engine/Extras/Redist/en-us/UEPrereqSetup_x64.exe /quiet /norestart")
else: 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") shell(f"{UNREALENGINE}/Engine/Build/BatchFiles/Linux", "./Setup.sh")
touch.write_text("Downloaded") touch.write_text("Downloaded")