#!/bin/sh

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

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