From 4e721c07cc0509879106e4ffef96a1870b0ba9ae Mon Sep 17 00:00:00 2001 From: mscherer Date: Thu, 9 Sep 2021 19:39:59 +0200 Subject: [PATCH] Fix docs/makefile after #284 got merged (#291) --- BUILDING | 3 +-- Makefile | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/BUILDING b/BUILDING index 23adc4dcd..14ecc82b9 100644 --- a/BUILDING +++ b/BUILDING @@ -1,6 +1,5 @@ 1. Install go 1.9 or later -2. Execute `make deps` to download dependencies -3. Execute `make install` to compile project and install binaries to `GOPATH` +2. Execute `make install` to compile project and install binaries to `GOPATH` --- diff --git a/Makefile b/Makefile index bb0fb1312..773f3cbae 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ DOCKER_RUN?= _with-docker: $(eval DOCKER_RUN=docker run --rm -v $(shell pwd):/go/src/ -v $(shell pwd)/build:/build -w /go/src golang:$(DOCKER_RUN_GO_VERSION)) -all: deps build +all: build vendor: go mod tidy