Permalink
Browse files
makefile: add the GOPATH/bin directory to the PATH
- Loading branch information...
Showing
with
2 additions
and
0 deletions.
-
+2
−0
Makefile
|
|
@@ -11,6 +11,8 @@ PACKAGE = github.com/etix/mirrorbits |
|
|
GOFLAGS := -ldflags "-X $(PACKAGE)/core.VERSION=$(VERSION) -X $(PACKAGE)/core.BUILD=$(BUILD)"
|
|
|
GOFLAGSDEV := -race -ldflags "-X $(PACKAGE)/core.VERSION=$(VERSION) -X $(PACKAGE)/core.BUILD=$(BUILD) -X $(PACKAGE)/core.DEV=-dev"
|
|
|
|
|
|
+export PATH := ${GOPATH}/bin:$(PATH)
|
|
|
+
|
|
|
all: build
|
|
|
|
|
|
vendor:
|
|
|
|
0 comments on commit
ec82852