fixed BuildManager

This commit is contained in:
Sirkeira
2025-12-06 10:33:35 -03:00
committed by GitHub
parent 139756a401
commit 9b6201fdf2
+3 -2
View File
@@ -236,7 +236,7 @@ if __name__ == '__main__':
write(f"→ Writing output: {py_path}") write(f"→ Writing output: {py_path}")
with open(py_path, "w", encoding="utf-8") as f: with open(py_path, "w", encoding="utf-8") as f:
f.write(protected_code) f.write(part1 + protected_code)
if file_type == "py": if file_type == "py":
write("✓ Build completed: .py generated successfully.") write("✓ Build completed: .py generated successfully.")
@@ -324,4 +324,5 @@ if __name__ == '__main__':
return True return True
write("✗ ERROR: invalid file_type") write("✗ ERROR: invalid file_type")
return False
return False