Skip to content

Commit 90e3272

Browse files
committed
add a shell script for cleaning up all kinds of build artifacts
* it cleans up all 'bin' and 'obj' directories, as well as .vs etc * can help to fix build problems and return to a clean initial state * should work on Mac, Linux, WSL, ...
1 parent 44b74dd commit 90e3272

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

cleanup.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
# remove 'bin' and 'obj' directories
4+
find . -type d \( -name 'bin' -o -name 'obj' \) -prune -exec rm -rf {} \;
5+
6+
rm -rf Source/packages/
7+
rm -rf Source/.vs/

0 commit comments

Comments
 (0)