mirror of
https://github.com/helm/helm.git
synced 2026-08-09 01:21:20 +00:00
Merge pull request #2344 from unguiculus/feature/prereqs
Add Git and Mercurial to build prerequisites
This commit is contained in:
4
Makefile
4
Makefile
@@ -104,6 +104,7 @@ coverage:
|
||||
HAS_GLIDE := $(shell command -v glide;)
|
||||
HAS_GOX := $(shell command -v gox;)
|
||||
HAS_GIT := $(shell command -v git;)
|
||||
HAS_HG := $(shell command -v hg;)
|
||||
|
||||
.PHONY: bootstrap
|
||||
bootstrap:
|
||||
@@ -116,6 +117,9 @@ endif
|
||||
|
||||
ifndef HAS_GIT
|
||||
$(error You must install Git)
|
||||
endif
|
||||
ifndef HAS_HG
|
||||
$(error You must install Mercurial)
|
||||
endif
|
||||
glide install --strip-vendor
|
||||
go build -o bin/protoc-gen-go ./vendor/github.com/golang/protobuf/protoc-gen-go
|
||||
|
||||
@@ -10,6 +10,8 @@ Helm and Tiller.
|
||||
- kubectl 1.2 or later
|
||||
- A Kubernetes cluster (optional)
|
||||
- The gRPC toolchain
|
||||
- Git
|
||||
- Mercurial
|
||||
|
||||
## Building Helm/Tiller
|
||||
|
||||
|
||||
Reference in New Issue
Block a user