From 5951081efa06fd7f703e4c265252567a39fa6a6b Mon Sep 17 00:00:00 2001 From: WorldTeacher Date: Thu, 3 Jul 2025 10:37:49 +0200 Subject: [PATCH] update build script --- build.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.py b/build.py index 0313ef8..60b295b 100644 --- a/build.py +++ b/build.py @@ -5,10 +5,12 @@ with open(".version", "r") as version_file: version = version_file.read().strip() print("Building the project...") +print("Cleaning build dir...") # clear dist directory if os.path.exists("dist"): shutil.rmtree("dist") os.makedirs("dist") +print("Build directory cleaned.") build = input("Include console in build? (y/n): ").strip().lower()