OSDN Git Service

Try guarding against rogue map coordinate values.
[radegast/radegast.git] / runprebuild.sh
1 #!/bin/bash
2
3 cd `dirname "$0"`
4 mkdir bin 2>/dev/null
5 cp Radegast/assemblies/* bin
6
7 mono Radegast/Prebuild.exe /target nant
8
9 cp -f NullBuild.txt plugins/Radegast.Plugin.Speech/RadSpeechWin/RadSpeechWin.dll.build
10 cp -f NullBuild.txt plugins/Radegast.Plugin.Speech/RadSpeechMac/RadSpeechMac.dll.build
11 cp -f NullBuild.txt plugins/Radegast.Plugin.Demo/Radegast.Plugin.Demo.dll.build
12
13 if [ x$1 == xnant ]; then
14     nant -buildfile:Radegast.build
15     RES=$?
16     echo Build Exit Code: $RES
17     if [ x$2 == xruntests ]; then
18         nunit-console2 bin/Radegast.Tests.dll /exclude=Network /labels /xml=testresults.xml
19     fi
20     
21     exit $RES
22 fi