Files
opensim/runprebuild.sh
T
BlueWall faf250df2d add clean task to reuprebuild.sh
./runprebuild.sh clean to clean up the project files
2012-07-26 21:28:20 -04:00

19 lines
175 B
Bash
Executable File

#!/bin/sh
case "$1" in
'clean')
mono bin/Prebuild.exe /clean
;;
*)
mono bin/Prebuild.exe /target nant
mono bin/Prebuild.exe /target vs2008
;;
esac