mirror of
git://opensimulator.org/git/opensim
synced 2026-08-14 00:58:07 +00:00
19 lines
175 B
Bash
Executable File
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
|
|
|