OpenSimMirror/releng/dobuild.sh

28 lines
513 B
Bash
Raw Normal View History

#!/bin/sh
# this script does a guaranteed clean build from SVN using a URL specified on the command line
rm -rf build/
mkdir build
printf "Getting fresh source tree from SVN..."
svn checkout $1 build
printf "Updating templates..."
./parsetmpl.sh templates/VersionInfo.cs.tmpl >build/OpenSim.RegionServer/VersionInfo.cs
printf "Running prebuild..."
cd build
mono bin/Prebuild.exe /target nant
2007-05-16 18:04:59 +00:00
if [ $? -eq 0 ]
if [ $? -eq 0 ]
printf "Doing the build..."
nant
else
exit 1
fi
else
exit 1
fi