Commit eb1f3685 authored by Matt Butcher's avatar Matt Butcher Committed by GitHub

Merge pull request #2344 from unguiculus/feature/prereqs

Add Git and Mercurial to build prerequisites
parents d7ab16ad 8c437e51
...@@ -104,6 +104,7 @@ coverage: ...@@ -104,6 +104,7 @@ coverage:
HAS_GLIDE := $(shell command -v glide;) HAS_GLIDE := $(shell command -v glide;)
HAS_GOX := $(shell command -v gox;) HAS_GOX := $(shell command -v gox;)
HAS_GIT := $(shell command -v git;) HAS_GIT := $(shell command -v git;)
HAS_HG := $(shell command -v hg;)
.PHONY: bootstrap .PHONY: bootstrap
bootstrap: bootstrap:
...@@ -116,6 +117,9 @@ endif ...@@ -116,6 +117,9 @@ endif
ifndef HAS_GIT ifndef HAS_GIT
$(error You must install Git) $(error You must install Git)
endif
ifndef HAS_HG
$(error You must install Mercurial)
endif endif
glide install --strip-vendor glide install --strip-vendor
go build -o bin/protoc-gen-go ./vendor/github.com/golang/protobuf/protoc-gen-go go build -o bin/protoc-gen-go ./vendor/github.com/golang/protobuf/protoc-gen-go
......
...@@ -10,6 +10,8 @@ Helm and Tiller. ...@@ -10,6 +10,8 @@ Helm and Tiller.
- kubectl 1.2 or later - kubectl 1.2 or later
- A Kubernetes cluster (optional) - A Kubernetes cluster (optional)
- The gRPC toolchain - The gRPC toolchain
- Git
- Mercurial
## Building Helm/Tiller ## Building Helm/Tiller
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment