99eeb04d01f7330dce95138d94affe0c2a25e007
[ardour.git] / tools / linux_packaging / noderun
1 #!/bin/sh
2
3 BASE=$1
4
5 if [ x$BASE = "x" ] ; then 
6    exit 1
7 fi
8
9 cd $BASE || exit 1
10 svn update || exit 1
11 ./waf configure --strict --noconfirm || exit 1
12 ./waf || exit 1
13 cd tools/linux_packaging || exit 1
14 ./build --public || exit 1
15 file=`ls -t *.bz2 | head -1`
16 echo "Copying $file to shared zone" 
17 #cp $file $BASE/../vmshare || exit 1
18
19 exit 0