From ebacf5cb4d1af4fc8f7b7833ecd72836e53037cf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Mon, 14 Jan 2019 18:24:22 +0100 Subject: Makefile: fix double $(GO) $(GO) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a0bfd3635..77063bb38 100644 --- a/Makefile +++ b/Makefile @@ -312,8 +312,8 @@ else endif test_race: - env CGO_ENABLED=1 $(GO) $(GO) test -race; if test $$? -ne 2; then \ - env CGO_ENABLED=1 $(GO) test -short -race -bench=.* -benchtime=.2s ./... ;\ + env CGO_ENABLED=1 $(GO) test -race; if test $$? -ne 2; then \ + env CGO_ENABLED=1 $(GO) test -race -short -bench=.* -benchtime=.2s ./... ;\ fi clean: -- cgit mrf-deployment