Added PrepareRelease.bat batch to delete the .svn folders in preparation of a release. Should do the same for Linux.

This commit is contained in:
the_fiddler 2007-04-20 20:38:09 +00:00
parent 3314992859
commit 9e7887cbed

5
Build/PrepareRelease.bat Normal file
View file

@ -0,0 +1,5 @@
cd..
dir /s /b /ad | find ".svn" > del.txt
for /F "delims='" %%f in (del.txt) do rmdir /q /s "%%f"
del del.txt
cd Build