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