Sophie

Sophie

distrib > Mandriva > 2010.0 > x86_64 > by-pkgid > db7a42361fc52f1236a61b01ceee68a3 > files > 1783

bzr-2.0.1-1mdv2010.0.x86_64.rpm

#!/bin/bash
# Helper for updating all of the packaging branches

if [ -z "$UBUNTU_RELEASES" ]; then
    echo "Configure the distro platforms that you want to"
    echo "build with a line like:"
    echo '  export UBUNTU_RELEASES="dapper feisty gutsy hardy intrepid jaunty"'
    exit 1
fi

for DISTRO in $UBUNTU_RELEASES; do
    if [ -d "packaging-$DISTRO" ] ; then
        echo "Updating packaging-$DISTRO"
        bzr update packaging-$DISTRO
    else
        echo "Checking out lp:~bzr/bzr/packaging-$DISTRO"
        bzr co lp:~bzr/bzr/packaging-$DISTRO
    fi
done