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()