Fixed Git LFS fix

This commit is contained in:
Jim Shepich III 2026-02-03 02:31:24 -05:00
parent e50cdce379
commit be7e4698f6

View File

@ -21,8 +21,8 @@ def pull_git_repo(repo: GitRepo, build_cache: str) -> None:
# Download all LFS files. # Download all LFS files.
if repo.lfs: if repo.lfs:
run('git lfs fetch --all') run('git -C {build_cache} lfs fetch --all')
run('git lfs pull') run('git -C {build_cache} lfs pull')
return None return None