Merge pull request #185 from harshavardhana/pr_out_remove_go_cover

This commit is contained in:
Harshavardhana 2015-02-20 17:44:46 -08:00
commit eab19e3ce4
3 changed files with 3 additions and 14 deletions

View file

@ -12,7 +12,6 @@ checkgopath:
getdeps: checkdeps checkgopath
@go get github.com/tools/godep && echo "Installed godep"
@go get golang.org/x/tools/cmd/cover && echo "Installed gocover"
build-all: getdeps
@echo "Building Libraries"

View file

@ -176,8 +176,9 @@ install_minio_deps() {
msg "Installing minio deps.."
env go get github.com/tools/godep && echo "Installed godep" || \
die "Cannot install godep. Abort installation."
env go get golang.org/x/tools/cmd/cover && echo "Installed cover" || \
die "Cannot install cover. Abort installation."
# not needed anymore, keeping it here for future
# env go get golang.org/x/tools/cmd/cover && echo "Installed cover" || \
# die "Cannot install cover. Abort installation."
}
install_minio() {

View file

@ -1,11 +0,0 @@
all: build test
.PHONY: all
build:
@godep go build
test: build
@godep go test -race -coverprofile=cover.out
clean:
@rm -v cover.out