Skip to content

Commit

Permalink
Minor changes to Makefile to avoid the make failure when GOPATH/bin i…
Browse files Browse the repository at this point in the history
…s not part of PATH
  • Loading branch information
Karthic Rao committed Jan 20, 2016
1 parent 9cb590d commit b457a61
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@ fmt:

lint:
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 golint *.go
@GO15VENDOREXPERIMENT=1 golint github.com/minio/minio/pkg...
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/golint *.go
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/golint github.com/minio/minio/pkg...

cyclo:
@echo "Running $@:"
@GO15VENDOREXPERIMENT=1 gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT=1 gocyclo -over 65 pkg
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/gocyclo -over 65 *.go
@GO15VENDOREXPERIMENT=1 ${GOPATH}/bin/gocyclo -over 65 pkg

build: getdeps verifiers
@echo "Installing minio:"
Expand Down

0 comments on commit b457a61

Please sign in to comment.