summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2022-11-04 12:12:18 +0100
committerGitHub <noreply@github.com>2022-11-04 12:12:18 +0100
commitaf6f5935e83224fc89fd0be63bde4d2166ada0bc (patch)
tree3e4a12fd57165e695a6054943c04a05d6a99e192
parent9d8a0bd775fc69c42e7c85ec7eee19b95301b1c9 (diff)
parent49868462b2bd06f3e2dab977e8739ee423bea73e (diff)
Merge pull request #24741 from vespa-engine/arnej/use-real-pwd
use /bin/pwd to avoid symlinks
-rw-r--r--client/go/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/Makefile b/client/go/Makefile
index 8779c1bfe25..7968d502e7a 100644
--- a/client/go/Makefile
+++ b/client/go/Makefile
@@ -132,7 +132,7 @@ clean:
test: ci
mkdir -p mytmp
- TMPDIR=`pwd`/mytmp go test ./...
+ TMPDIR=`/bin/pwd`/mytmp go test ./...
checkfmt:
@bash -c "diff --line-format='%L' <(echo -n) <(gofmt -l .)" || { echo "one or more files need to be formatted: try make fmt to fix this automatically"; exit 1; }