mirror of
https://github.com/opensim/opensim.git
synced 2026-05-15 03:15:41 +08:00
28 lines
268 B
Bash
Executable File
28 lines
268 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
|
|
'clean')
|
|
|
|
mono bin/Prebuild.exe /clean
|
|
;;
|
|
|
|
|
|
'autoclean')
|
|
|
|
echo y|mono bin/Prebuild.exe /clean
|
|
|
|
;;
|
|
|
|
|
|
*)
|
|
|
|
mono bin/Prebuild.exe /target nant
|
|
mono bin/Prebuild.exe /target vs2015
|
|
|
|
;;
|
|
|
|
esac
|
|
rm -fr bin/addin-db-002
|
|
|