diff --git a/dist/remote-builder/cloneNoLFS.sh b/dist/remote-builder/cloneNoLFS.sh index 735c86f2..a38a6a88 100755 --- a/dist/remote-builder/cloneNoLFS.sh +++ b/dist/remote-builder/cloneNoLFS.sh @@ -12,7 +12,7 @@ echo "Cloning the repository being built:" git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f" git config --global filter.lfs.process "git-lfs filter-process --skip" # Init new repo and setup origin -git init $repoPathFull +git init git remote add origin $cloneUrl # Get remote version git fetch origin @@ -20,6 +20,8 @@ git reset --hard $githubSha # ENABLE LFS git config --global filter.lfs.smudge "git-lfs smudge -- %f" git config --global filter.lfs.process "git-lfs filter-process" + +tree # List git lfs files git lfs ls-files --all echo ' '