From be7e4698f6a9348040e0735dc5bd3b7afce77009 Mon Sep 17 00:00:00 2001 From: Jim Shepich III Date: Tue, 3 Feb 2026 02:31:24 -0500 Subject: [PATCH] Fixed Git LFS fix --- jimsite/assets.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jimsite/assets.py b/jimsite/assets.py index 756cd06..8c0d88b 100644 --- a/jimsite/assets.py +++ b/jimsite/assets.py @@ -21,8 +21,8 @@ def pull_git_repo(repo: GitRepo, build_cache: str) -> None: # Download all LFS files. if repo.lfs: - run('git lfs fetch --all') - run('git lfs pull') + run('git -C {build_cache} lfs fetch --all') + run('git -C {build_cache} lfs pull') return None