mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 00:58:07 +00:00
27 lines
223 B
Bash
27 lines
223 B
Bash
#!/bin/sh
|
|
|
|
case "$1" in
|
|
|
|
'clean')
|
|
|
|
mono bin/Prebuild.exe /clean
|
|
|
|
;;
|
|
|
|
|
|
'autoclean')
|
|
|
|
echo y|mono bin/Prebuild.exe /clean
|
|
|
|
;;
|
|
|
|
|
|
|
|
*)
|
|
|
|
mono bin/Prebuild.exe /target vs2019 /file prebuild48.xml
|
|
|
|
;;
|
|
|
|
esac
|