From 09070453e70dee39b01038a1e864fd3f0ca544ce Mon Sep 17 00:00:00 2001 From: Jefferson Ramos Date: Thu, 11 Jun 2026 15:21:05 -0300 Subject: [PATCH] Fix make build target cd issue Fix make build target error `./hack/build-go.sh: line 6: cd: null directory` --- hack/build-go.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hack/build-go.sh b/hack/build-go.sh index 269d691568..4b10853bbe 100755 --- a/hack/build-go.sh +++ b/hack/build-go.sh @@ -3,7 +3,7 @@ set -eu # Go to the root of the repo -cd "$(git rev-parse --show-cdup)" +cd "$(git rev-parse --show-cdup)./" # Source build variables source hack/build-info.sh