From 567cf5bff69c0965b8267a30021332a1ef7a9a69 Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Wed, 19 Oct 2022 13:58:42 +0200 Subject: [PATCH 1/2] X-Smart-Branch-Parent: main From adbc8ef4aba8daa70f92e2b3de0218ab05904385 Mon Sep 17 00:00:00 2001 From: Moritz Clasmeier Date: Wed, 19 Oct 2022 13:58:16 +0200 Subject: [PATCH 2/2] Add missing quotes around PATH variable to prevent failures when PATH contains a directory path including whitespaces --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6c8fd7f..b98061d 100644 --- a/Makefile +++ b/Makefile @@ -18,7 +18,7 @@ PATH := $(GOBIN):$(PATH) # and so, without the following line, the shell does not end up # trying commands in $(GOBIN) first. # See https://stackoverflow.com/a/36226784/3690207 -SHELL := env GOBIN=$(GOBIN) PATH=$(PATH) /bin/bash +SHELL := env GOBIN="$(GOBIN)" PATH="$(PATH)" /bin/bash ######################################## ###### Binaries we depend on ###########