Mercurial > hg > vamp-build-and-test
view 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 |
line wrap: on
line source
#!/bin/bash # Run this from the top-level vamp-build-and-test directory cat .hgsub | awk '{ print $1 }' | while read x; do if [ -d "$x" ]; then ( cd $x ; hg pull && hg update ) else url=$(grep "^$x " .hgsub | awk '{ print $3; }') hg clone "$url" "$x" fi done