From 8e49f5a406f7bfc6900ff45ebf0a2ac0c5bce7c5 Mon Sep 17 00:00:00 2001 From: "Joshua J. Berry" Date: Mon, 2 Sep 2024 15:17:26 -0400 Subject: [PATCH] build: Check style after everything else --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e674595..6379aca 100644 --- a/Makefile +++ b/Makefile @@ -26,9 +26,9 @@ DIST_PKG = $(RELEASE_DIR)/$(PACKAGE)-$(FULL_VERSION).zip # automatically fixed. debug: $(MAKE) check-types - $(MAKE) check-style || ( $(MAKE) fix-style && $(MAKE) check-types ) $(MAKE) build-dbg build-chrome-dbg $(MAKE) check-tests + $(MAKE) check-style || ( $(MAKE) fix-style && $(MAKE) debug ) .PHONY: debug check: check-types check-tests check-style