Unverified Commit d1540c15 authored by Mathiyarasy's avatar Mathiyarasy Committed by GitHub

Fix git-lfs not actually running git lfs install (#1381)

* add git lfs install

* update minor version
parent 3442a4e8
{ {
"id": "git-lfs", "id": "git-lfs",
"version": "1.2.4", "version": "1.2.5",
"name": "Git Large File Support (LFS)", "name": "Git Large File Support (LFS)",
"documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs", "documentationURL": "https://github.com/devcontainers/features/tree/main/src/git-lfs",
"description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.", "description": "Installs Git Large File Support (Git LFS) along with needed dependencies. Useful for base Dockerfiles that often are missing required install dependencies like git and curl.",
...@@ -40,4 +40,4 @@ ...@@ -40,4 +40,4 @@
"installsAfter": [ "installsAfter": [
"ghcr.io/devcontainers/features/common-utils" "ghcr.io/devcontainers/features/common-utils"
] ]
} }
\ No newline at end of file
...@@ -270,7 +270,7 @@ if ! git lfs ls-files > /dev/null 2>&1; then ...@@ -270,7 +270,7 @@ if ! git lfs ls-files > /dev/null 2>&1; then
echo "(!) Skipping automatic 'git lfs pull' because no git lfs files were detected" echo "(!) Skipping automatic 'git lfs pull' because no git lfs files were detected"
exit 0 exit 0
fi fi
git lfs install
git lfs pull git lfs pull
EOF EOF
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment