From 653fd719887a0627318f81be287d0dc207fc0f8b Mon Sep 17 00:00:00 2001 From: Shishir Mahajan Date: Thu, 9 Jul 2020 18:33:35 -0700 Subject: [PATCH] Makefile to detect golang path dynamically. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 84aa552..2cac38a 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ BINARY ?= containerd-driver -GOLANG ?= /usr/local/go/bin/go +ifndef $(GOLANG) + GOLANG=$(shell which go) + export GOLANG +endif export GO111MODULE=on