add clean task to reuprebuild.sh

./runprebuild.sh clean to clean up the project files
0.7.4.1
BlueWall 2012-07-26 21:28:20 -04:00
parent 5f741143fd
commit faf250df2d
1 changed files with 16 additions and 2 deletions

View File

@ -1,4 +1,18 @@
#!/bin/sh
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2008
case "$1" in
'clean')
mono bin/Prebuild.exe /clean
;;
*)
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2008
;;
esac