summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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; }