We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a70d591 commit e254209Copy full SHA for e254209
build.py
@@ -101,3 +101,17 @@
101
if os.path.exists(target_dir):
102
shutil.rmtree(target_dir)
103
shutil.copytree(format_path, target_dir)
104
+
105
+ for pdb_file in build_dir.rglob("*.pdb"):
106
+ try:
107
+ pdb_file.unlink()
108
+ print(f"Removed: {pdb_file}")
109
+ except Exception as e:
110
+ print(f"Failed to remove {pdb_file}: {e}")
111
112
+ for pdb_file in build_dir.rglob("plugdata.*"): # weird plugdata build trash on Windows for some reason
113
114
115
116
117
0 commit comments