diff --git a/dist/remote-builder/cloneNoLFS.sh b/dist/remote-builder/cloneNoLFS.sh index b282329e..735c86f2 100755 --- a/dist/remote-builder/cloneNoLFS.sh +++ b/dist/remote-builder/cloneNoLFS.sh @@ -6,7 +6,7 @@ githubSha=$3 cd $repoPathFull -echo '' +echo ' ' echo "Cloning the repository being built:" # DISABLE LFS git config --global filter.lfs.smudge "git-lfs smudge --skip -- %f" @@ -17,5 +17,9 @@ git remote add origin $cloneUrl # Get remote version git fetch origin 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" +# List git lfs files git lfs ls-files --all -echo '' +echo ' '