From d8fe9c44c8780f543c5017a0e6d362b3d734d7b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ch=C3=A1bek?= Date: Fri, 10 Sep 2021 17:19:17 +0200 Subject: [PATCH] Simplify build in Makefile --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index a56970f..1105341 100644 --- a/Makefile +++ b/Makefile @@ -4,9 +4,7 @@ export GOBIN = $(BIN) .PHONY: build build: - for CMD in `ls cmd`; do \ - go build ./cmd/$$CMD; \ - done + go build ./cmd/... .PHONY: check check: lint test