From 1f1ccab948149560a2b08e772bd2277471818c3a Mon Sep 17 00:00:00 2001 From: Daniel Jiang Date: Mon, 27 May 2024 16:49:47 +0800 Subject: [PATCH] Fix issue in "git status" in goreleaser.sh When dry-run the tag-release.sh, there's an error "fatal: detected dubious ownership in repository at '/github.com/vmware-tanzu/velero'" This commit works around this issue to make sure "tag-release.sh" can finish successful Signed-off-by: Daniel Jiang --- hack/build-image/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hack/build-image/Dockerfile b/hack/build-image/Dockerfile index 0a9f5c2ac7..5c0d9898d6 100644 --- a/hack/build-image/Dockerfile +++ b/hack/build-image/Dockerfile @@ -99,3 +99,6 @@ RUN curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/i RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/$(go env GOARCH)/kubectl RUN chmod +x ./kubectl RUN mv ./kubectl /usr/local/bin + +# Fix the "dubious ownership" issue from git when running goreleaser.sh +RUN echo "[safe] \n\t directory = *" > /.gitconfig \ No newline at end of file