From 1efb057e6a6a019dddfcd3558f587a6020e5abd7 Mon Sep 17 00:00:00 2001 From: Hariharan Thavachelvam <164553783+thavaahariharangit@users.noreply.github.com> Date: Thu, 5 Dec 2024 14:20:22 +0000 Subject: [PATCH] Cleaning up lfs environment variable as it is not being used (#11058) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: “Thavachelvam <“thavaahariharangit@git.com”> --- go_modules/Dockerfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/go_modules/Dockerfile b/go_modules/Dockerfile index 5e6d3a59b1..f9d47c86c6 100644 --- a/go_modules/Dockerfile +++ b/go_modules/Dockerfile @@ -27,10 +27,3 @@ ENV GOTOOLCHAIN="go1.20.10" # This pre-installs go 1.20 so that each job doesn't have to do it. RUN go version ENV GO_LEGACY=$GOTOOLCHAIN - -# Enable automatic pulling of files stored with Git LFS. -# This is crucial for the Go toolchain to correctly compute module hashes in repositories -# with LFS committed files. -# This is relevant only for Go Modules embedding (with //go:embed) large files and does not -# affect repositories that do not commit files to LFS. -ENV GIT_LFS_SKIP_SMUDGE=1