add clean task to reuprebuild.sh
./runprebuild.sh clean to clean up the project files0.7.4.1
parent
5f741143fd
commit
faf250df2d
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue