Remove dependency on minio/cli for make.go fixes #738

This commit is contained in:
Harshavardhana
2015-07-13 11:39:28 -07:00
parent dfa43f7982
commit 1e80925ca7
3 changed files with 30 additions and 48 deletions

View File

@@ -33,13 +33,13 @@ cyclo:
gomake-all: getdeps verifiers
@echo "Installing minio:"
@go run make.go install
@go run cmd/mkdonut/make.go install
@go run make.go -install
@go run cmd/mkdonut/make.go -install
release: getdeps verifiers
@echo "Installing minio:"
@go run make.go release
@go run make.go install
@go run make.go -release
@go run make.go -install
godepupdate:
@for i in $(grep ImportPath Godeps/Godeps.json | grep -v minio/minio | cut -f2 -d: | sed -e 's/,//' -e 's/^[ \t]*//' -e 's/[ \t]*$//' -e 's/\"//g'); do godep update $i; done