From cfc751ee3231ea8796c974ce6738d75835b22b8a Mon Sep 17 00:00:00 2001 From: Diego Pereira Date: Sun, 13 Aug 2023 02:27:57 -0300 Subject: [PATCH] chore: fmt before build --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 46a0198..fe83d99 100644 --- a/Makefile +++ b/Makefile @@ -2,9 +2,12 @@ export PATH:=$(PATH):$(HOME)/.cargo/bin .phony: build -build: +build: format cargo build +format: + cargo fmt + clean: cargo clean