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 caba26d commit 54f1832Copy full SHA for 54f1832
1 file changed
build.py
@@ -94,14 +94,14 @@
94
print(f"Successfully built: {target}")
95
format_path = os.path.join(plugins_dir, fmt)
96
97
- for pdb_file in format_path.rglob("*.pdb"):
+ for pdb_file in Path(format_path).resolve().rglob("*.pdb"):
98
try:
99
pdb_file.unlink()
100
print(f"Removed: {pdb_file}")
101
except Exception as e:
102
print(f"Failed to remove {pdb_file}: {e}")
103
104
- for trash in format_path.rglob("plugdata.*"): # weird plugdata build trash on Windows for some reason
+ for trash in Path(format_path).resolve().rglob("plugdata.*"): # weird plugdata build trash on Windows for some reason
105
106
trash.unlink()
107
print(f"Removed: {trash}")
0 commit comments