From 7f5978a0f2bd705c688e02c7b17e9cf0e675c9d2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sybren=20A=2E=20St=C3=BCvel?= Date: Sat, 9 Apr 2022 11:50:24 +0200 Subject: [PATCH] Use `go install` instead of `go get` to install code generators --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7568d99f..a0e76d13 100644 --- a/Makefile +++ b/Makefile @@ -16,8 +16,8 @@ all: application # Install generators and build the software. with-deps: - go get github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.9.0 - go get github.com/golang/mock/mockgen@v1.6.0 + go install github.com/deepmap/oapi-codegen/cmd/oapi-codegen@v1.9.0 + go install github.com/golang/mock/mockgen@v1.6.0 $(MAKE) application application: flamenco-manager flamenco-worker