From 6ec24b3605f4d35d0b82b4d6c6cb211e0bc90ba3 Mon Sep 17 00:00:00 2001 From: nodiscc Date: Thu, 24 Sep 2020 21:45:17 +0200 Subject: [PATCH] Makefile: remove static_analysis_summary from all: target static_analysis_summary was removed in 37c9c6b#diff-b67911656ef5d18c4ae36cb6741b7965 but not from the all: target dependencies. Therefore running make all always fails. fixes https://github.com/shaarli/Shaarli/issues/1459 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2d604b54..4c9a9c83 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ BIN = vendor/bin -all: static_analysis_summary check_permissions test +all: check_permissions test ## # Docker test adapter -- 2.41.0