From cbf6330b944e4f4128f65b8cc9f840dd3df32d73 Mon Sep 17 00:00:00 2001 From: retoor Date: Fri, 6 Dec 2024 18:46:27 +0000 Subject: [PATCH] feat: add clean target to all prerequisite list in Makefile The `clean` target was added as a prerequisite to the `all` target in the Makefile, ensuring that cleanup occurs before the export and build steps during a full build cycle. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5b3bbf6..69d409e 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -all: ensure_env build sync export_dataset export_stats merge_images export_statistics export_mentions +all: ensure_env build sync clean export_dataset export_stats merge_images export_statistics export_mentions ensure_env: -@python3 -m venv venv