2 # Copyright (c) 2010-2013 by Index Data ApS. http://www.indexdata.com
4 # mkws-bootstrap.sh - build the MKWS from GIT repo in a sandbox and run full tests
10 dir=$(mktemp -d -t mkws-bootstrap.XXXXXXXX)
15 git clone -q ssh://git.indexdata.com:222/home/git/pub/mkws.git
18 test -n "$debug" && echo "start bootstraping in $dir"
19 if make check phantomjs > mkws.log 2>&1; then
20 test -n "$debug" && echo "Ok"
21 test -z "$debug" && rm -rf $dir
24 echo "Failure, see `pwd`/mkws.log"