blob: 04b5fa591c12dc97b8d52916fc1b2c8e70ec6b32 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/bash
./runprebuild.sh autoclean
# Clean the stuff autoclean forgets to clean. I feel so dirty.
find -name obj -type d -print | xargs /bin/rm -fr
find -name *.csproj -type f -print | xargs /bin/rm -fr
find -name *.csproj.* -type f -print | xargs /bin/rm -fr
find -name *.pdb -type f -print | xargs /bin/rm -fr
# Clean the stuff the tests created.
rm -fr bin/ScriptEngines
rm Test*.txt
|