Skip to content

Cleanup script useful during development and build process. #25

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
5 changes: 5 additions & 0 deletions delete-bin-obj.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@echo on
@echo Deleting all BIN and OBJ folders…
for /d /r . %%d in (bin,obj) do @if exist %%d rd /s/q %%d
@echo BIN and OBJ folders successfully deleted :) Close the window.
pause > nul