From 49868462b2bd06f3e2dab977e8739ee423bea73e Mon Sep 17 00:00:00 2001 From: Arne Juul Date: Fri, 4 Nov 2022 09:53:38 +0000 Subject: use /bin/pwd to avoid symlinks --- client/go/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/go/Makefile') 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; } -- cgit v1.2.3