mirror of
https://github.com/helm/helm.git
synced 2026-05-25 18:54:23 -04:00
Had a word with @technosophos and it seems we no longer need hg check as all other repos can be cloned via git
This commit is contained in:
parent
2f9c3c2e5d
commit
f630d0e954
1 changed files with 1 additions and 5 deletions
6
Makefile
6
Makefile
|
|
@ -101,7 +101,6 @@ coverage:
|
|||
|
||||
HAS_GLIDE := $(shell command -v glide;)
|
||||
HAS_GOX := $(shell command -v gox;)
|
||||
HAS_HG := $(shell command -v hg;)
|
||||
HAS_GIT := $(shell command -v git;)
|
||||
|
||||
.PHONY: bootstrap
|
||||
|
|
@ -113,11 +112,8 @@ ifndef HAS_GOX
|
|||
go get -u github.com/mitchellh/gox
|
||||
endif
|
||||
|
||||
ifndef HAS_HG
|
||||
@echo "Mercurial is not installed! Checking for Git"
|
||||
ifndef HAS_GIT
|
||||
$(error You must either install Mercurial or Git)
|
||||
endif
|
||||
$(error You must install Git)
|
||||
endif
|
||||
glide install --strip-vendor
|
||||
go build -o bin/protoc-gen-go ./vendor/github.com/golang/protobuf/protoc-gen-go
|
||||
|
|
|
|||
Loading…
Reference in a new issue