Skip to content

Commit

Permalink
Merge pull request #130 from scylladb/makefile_path_for_go
Browse files Browse the repository at this point in the history
make: fix PATH for go execution
  • Loading branch information
Henrik Johansson authored Jun 9, 2020
2 parents 6e4dcc5 + 511b06b commit 3bd1dd9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ IMG ?= $(REPO):$(TAG)
DOCKER_BUILDKIT := 1
GO111MODULE := off
KUBEBUILDER_ASSETS := $(CURDIR)/bin/deps
PATH := $(CURDIR)/bin/deps:$(CURDIR)/bin/deps/go/bin:$(PATH)
PATH := $(CURDIR)/bin/deps/go/bin:$(CURDIR)/bin/deps:$(PATH)
GOROOT := $(CURDIR)/bin/deps/go
GOVERSION := $(shell go version)

Expand Down

0 comments on commit 3bd1dd9

Please sign in to comment.