summaryrefslogtreecommitdiffstats
path: root/client/go/Makefile
diff options
context:
space:
mode:
authorArne Juul <arnej@yahooinc.com>2022-11-04 09:53:38 +0000
committerArne Juul <arnej@yahooinc.com>2022-11-04 09:53:38 +0000
commit49868462b2bd06f3e2dab977e8739ee423bea73e (patch)
tree5f1f981ada99925a71feca8315097fc2ca500754 /client/go/Makefile
parente810ec76d6e029f2a5993947d57adfded0abd438 (diff)
use /bin/pwd to avoid symlinks
Diffstat (limited to 'client/go/Makefile')
-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; }