From f630d0e954dce3d1433db64a70c3a1ae179bcd72 Mon Sep 17 00:00:00 2001
From: Miyurz <mayur.nagekar@gmail.com>
Date: Wed, 14 Dec 2016 23:35:31 +0530
Subject: [PATCH] Had a word with @technosophos and it seems we no longer need
 hg check as all other repos can be cloned via git

---
 Makefile | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/Makefile b/Makefile
index 69e8e8959..0424e801d 100644
--- a/Makefile
+++ b/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
-- 
GitLab