#!/bin/bash cd `dirname $0` svn up . if ! test -e ../Boost then { svn co svn://svn.felspar.com/external/Boost ../Boost cd ../Boost ./build 39 0 } fi if ! test -e ../fost-base then { svn co svn://svn.felspar.com/public/fost-base/trunk ../fost-base } fi if ! test -e ../fost-orm then { svn co svn://svn.felspar.com/public/fost-orm/trunk ../fost-orm } fi if ! test -e ../fost-py then { svn co svn://svn.felspar.com/public/fost-py/trunk ../fost-py } fi if ../fost-py/build release && ../fost-orm/compile release && ./compile release then { echo Everything ok } else { exit 1 } fi