From 87f55eea7f7775498a9ff29b5d9b0cf6111f98e2 Mon Sep 17 00:00:00 2001 From: zekro Date: Fri, 10 Jan 2020 19:16:05 +0100 Subject: [PATCH] fix dependency ensurance recipe [fix #85] --- Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9fd891a1..01e52975 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,6 @@ PRETTIER_CFG = "$(CURDIR)/.prettierrc.yml" ### EXECUTABLES ############################### GO = go -DEP = dep GOLINT = golint GREP = grep NPM = npm @@ -58,7 +57,7 @@ build: $(BIN) PHONY += deps deps: - $(DEP) mod tidy + $(GO) mod tidy cd ./web && \ $(NPM) install @@ -127,4 +126,4 @@ help: @echo "" -.PHONY: $(PHONY) \ No newline at end of file +.PHONY: $(PHONY)