From a99bd0c9e36b0cb3bb85674b5eaaa0db71a697fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miloslav=20Trma=C4=8D?= Date: Tue, 16 Aug 2022 23:08:14 +0200 Subject: [PATCH] Fix a comment MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ... to make it explicit which variable it refers to. Signed-off-by: Miloslav Trmač --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ba2e44e9..0881c7fd 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ ifeq ($(GOBIN),) GOBIN := $(GOPATH)/bin endif -# Multiple scripts are sensitive to this value, make sure it's exported/available +# Scripts may also use CONTAINER_RUNTIME, so we need to export it. # N/B: Need to use 'command -v' here for compatibility with MacOS. export CONTAINER_RUNTIME ?= $(if $(shell command -v podman),podman,docker) GOMD2MAN ?= $(if $(shell command -v go-md2man),go-md2man,$(GOBIN)/go-md2man)