summaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorMartin Polden <mpolden@mpolden.no>2022-03-24 14:15:56 +0100
committerMartin Polden <mpolden@mpolden.no>2022-03-24 14:15:56 +0100
commitd4f7cebcf68533611d7f3f9aed737601ab5d8e58 (patch)
tree7f1ea36bed97a57330ea33aab7dc3b35eefbd07a /client
parentb207ce6c72e7b615684a51ba4e28b1c8d0dae14d (diff)
Avoid bash-ism in redirection
Diffstat (limited to 'client')
-rw-r--r--client/go/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/go/Makefile b/client/go/Makefile
index 2835638f776..653ac381d6f 100644
--- a/client/go/Makefile
+++ b/client/go/Makefile
@@ -128,7 +128,7 @@ manpages: install
clean:
rm -rf $(DIST)
rm -f $(BIN)/vespa $(SHARE)/man/man1/vespa.1 $(SHARE)/man/man1/vespa-*.1
- rmdir -p $(BIN) $(SHARE)/man/man1 &> /dev/null || true
+ rmdir -p $(BIN) $(SHARE)/man/man1 > /dev/null 2>&1 || true
test: ci
go test ./...