view SCRIPTS/update-all.sh @ 33:0f1df952e9e9

Looks like --retain-symbols-file=<file>.list is the PE equivalent of the ELF version script for our purposes
author Chris Cannam
date Wed, 06 Aug 2014 16:02:26 +0100
parents c4ee2ab22c38
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