#!/bin/sh

source /etc/conf.d/eworm-repo
source /usr/lib/eworm/noroot
source /usr/lib/eworm/colors

for DIR in $(find ${BZRDIR} -mindepth 1 -maxdepth 1 -type d | sort); do
	echo -ne "bzr repo ${bldwht}$(basename "${DIR}")${default}: "
	cd ${DIR}
	bzr pull
done
