mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-02-24 10:16:52 +00:00
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:
parent
3314992859
commit
9e7887cbed
5
Build/PrepareRelease.bat
Normal file
5
Build/PrepareRelease.bat
Normal 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
|
Loading…
Reference in a new issue