Changed the way vendor imports, using the new GO15VENDOREXPERIMENT feature
This commit is contained in:
@@ -1,22 +1,22 @@
|
||||
default: debug
|
||||
|
||||
debug:
|
||||
go install -ldflags "-w" github.com/dimiro1/ipe
|
||||
GO15VENDOREXPERIMENT=1 go install -ldflags "-w" github.com/dimiro1/ipe
|
||||
|
||||
run-debug: debug
|
||||
${GOPATH}/bin/ipe --config ${GOPATH}/src/github.com/dimiro1/ipe/config.json -logtostderr=true -v=2
|
||||
|
||||
test:
|
||||
go test `go list ./... | grep -v vendor`
|
||||
GO15VENDOREXPERIMENT=1 go test `go list ./... | grep -v vendor`
|
||||
|
||||
macos:
|
||||
GOOS=darwin GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
GO15VENDOREXPERIMENT=1 GOOS=darwin GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
|
||||
linux:
|
||||
GOOS=linux GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
GO15VENDOREXPERIMENT=1 GOOS=linux GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
|
||||
windows:
|
||||
GOOS=windows GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
GO15VENDOREXPERIMENT=1 GOOS=windows GOARCH=amd64 go install github.com/dimiro1/ipe
|
||||
|
||||
raspberry:
|
||||
GOOS=linux GOARCH=arm go install github.com/dimiro1/ipe
|
||||
GO15VENDOREXPERIMENT=1 GOOS=linux GOARCH=arm go install github.com/dimiro1/ipe
|
||||
|
||||
Reference in New Issue
Block a user