10 lines
157 B
Batchfile
10 lines
157 B
Batchfile
@echo off
|
|
|
|
for %%f in (lib\windows\*.dll) do (
|
|
xcopy "%%f" "dist\" /Y
|
|
)
|
|
|
|
for %%f in (dist\*.pdb) do (
|
|
echo %%f | find "starbound" > nul || del %%f
|
|
)
|