Mercurial > hg > vamp-build-and-test
comparison 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 |
comparison
equal
deleted
inserted
replaced
5:57da88814766 | 6:c4ee2ab22c38 |
---|---|
1 #!/bin/bash | |
2 | |
3 # Run this from the top-level vamp-build-and-test directory | |
4 | |
5 cat .hgsub | awk '{ print $1 }' | while read x; do | |
6 if [ -d "$x" ]; then | |
7 ( cd $x ; hg pull && hg update ) | |
8 else | |
9 url=$(grep "^$x " .hgsub | awk '{ print $3; }') | |
10 hg clone "$url" "$x" | |
11 fi | |
12 done |