remove windows binaries from non-windows releases

This commit is contained in:
Laytan Laats
2025-08-05 21:31:06 +02:00
parent e0a08de455
commit ec75094303
2 changed files with 12 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
#!/usr/bin/env sh
find "$1" -type f \(\
-iname "*.exe" \
-o -iname "*.dll" \
-o -iname "*.lib" \
-o -iname "*.pdb" \
\) -delete