summaryrefslogtreecommitdiff
path: root/scripts/update-world
blob: 78b6117ea8c2c6b589b56aab81417e6fff708b89 (plain)
1
2
3
4
5
6
7
8
MAILTO=dan@randomdan.homeip.net
LOG=/tmp/update_all
emerge -uDN world > ${LOG} 2>&1
if [ -s ${LOG} ] ; then
	mailx -s ${0} ${MAILTO} < ${LOG}
fi
rm ${LOG}