Skip to content

Commit 3bd1dd9

Browse files
author
Henrik Johansson
authored
Merge pull request #130 from scylladb/makefile_path_for_go
make: fix PATH for go execution
2 parents 6e4dcc5 + 511b06b commit 3bd1dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ IMG ?= $(REPO):$(TAG)
99
DOCKER_BUILDKIT := 1
1010
GO111MODULE := off
1111
KUBEBUILDER_ASSETS := $(CURDIR)/bin/deps
12-
PATH := $(CURDIR)/bin/deps:$(CURDIR)/bin/deps/go/bin:$(PATH)
12+
PATH := $(CURDIR)/bin/deps/go/bin:$(CURDIR)/bin/deps:$(PATH)
1313
GOROOT := $(CURDIR)/bin/deps/go
1414
GOVERSION := $(shell go version)
1515

0 commit comments

Comments
 (0)