From bc103d069dd4443c6a26d8efd5a790f2a2f43632 Mon Sep 17 00:00:00 2001 From: lyuksovannyy Date: Thu, 10 Sep 2026 12:49:51 +0200 Subject: [PATCH] fix build --- build.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/build.py b/build.py index 98894c0..871dbd4 100755 --- a/build.py +++ b/build.py @@ -472,16 +472,12 @@ def bundle_plugin(): final_content = "\n".join(bundled_parts) # Write to both root plugin file and dist plugin file - with open(ROOT_PLUGIN_FILE, "w", encoding="utf-8") as out: - out.write(final_content) with open(DIST_PLUGIN_FILE, "w", encoding="utf-8") as out: out.write(final_content) - print(f"Bundled successfully -> {ROOT_PLUGIN_FILE}") print(f"Bundled successfully -> {DIST_PLUGIN_FILE}") # Validate syntax with py_compile - py_compile.compile(ROOT_PLUGIN_FILE, doraise=True) py_compile.compile(DIST_PLUGIN_FILE, doraise=True) print("Compiled and validated bundled artifact syntax successfully!")