annotate SCRIPTS/update-all.sh @ 6:c4ee2ab22c38

Run individual plugin tests separately; put output in reports dir. Move scripts to subdir
author Chris Cannam
date Sat, 26 Jul 2014 20:41:13 +0100
parents update-all.sh@57da88814766
children 3308317239fe
rev   line source
Chris@0 1 #!/bin/bash
Chris@6 2
Chris@6 3 # Run this from the top-level vamp-build-and-test directory
Chris@6 4
Chris@0 5 cat .hgsub | awk '{ print $1 }' | while read x; do
Chris@5 6 if [ -d "$x" ]; then
Chris@5 7 ( cd $x ; hg pull && hg update )
Chris@5 8 else
Chris@5 9 url=$(grep "^$x " .hgsub | awk '{ print $3; }')
Chris@5 10 hg clone "$url" "$x"
Chris@5 11 fi
Chris@0 12 done