From 4e2ca3d74d1cf8e74a32d63e34c92890ec56efae Mon Sep 17 00:00:00 2001 From: hmhealey Date: Mon, 20 Jul 2015 16:06:26 -0400 Subject: [PATCH] Fixed detection of godep when it doesn't exist on the path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 28cdce7077..e118c23aa1 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ GOPATH ?= $(GOPATH:) GOFLAGS ?= $(GOFLAGS:) BUILD_NUMBER ?= $(BUILD_NUMBER:) -ifeq ($(shell which godep), "") +ifeq ($(shell which godep),) GODEP=$(GOPATH)/bin/godep else GODEP=godep