From def2abaa2dede3c937747cc9b254ec29feb3446d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Duffeck?= Date: Tue, 12 Jul 2022 15:25:54 +0200 Subject: [PATCH] Fix `make protobuf` --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0635429d86..0c29bbe836 100644 --- a/Makefile +++ b/Makefile @@ -181,7 +181,7 @@ go-coverage: .PHONY: protobuf protobuf: - @for mod in $(OCIS_MODULES); do \ + @for mod in ./services/thumbnails ./services/store ./services/settings; do \ echo -n "% protobuf $$mod: "; $(MAKE) --no-print-directory -C $$mod protobuf || exit 1; \ done