From d79a366f75d552588863c0babe2311bf7f1db40f Mon Sep 17 00:00:00 2001 From: belliash Date: Fri, 13 Jan 2012 23:32:03 +0100 Subject: [PATCH] correct some messages --- ezsync | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ezsync b/ezsync index 7aa03bb..0ce279b 100755 --- a/ezsync +++ b/ezsync @@ -100,9 +100,9 @@ pullRepository ${PORTAGESDIR}/${PORTAGE_BUILD[0]} ${PORTAGE_BUILD[1]} ${PORTAGE_ # Update local copy of mainline Portage if ! hasElement "mainline" ${EZNOSYNC} && ! hasElement "portage" ${EZNOSYNC}; then - printInfo "Synchronizing mainline Portage tree..." + printInfo "Refreshing mainline Portage tree..." pullRepository ${PORTAGESDIR}/${PORTAGE_MAINLINE[0]} ${PORTAGE_MAINLINE[1]} ${PORTAGE_MAINLINE[2]} ${PORTAGE_MAINLINE[3]} - [ ${?} -ne 0 ] && die "EzBuild was unable to synchronize mainline Portage tree!" 2 + [ ${?} -ne 0 ] && die "EzBuild was unable to refresh mainline Portage tree!" 2 [ -e ${PORTAGESDIR}/${PORTAGE_MAINLINE[0]}/metadata/cache ] && rm -rf ${PORTAGESDIR}/${PORTAGE_MAINLINE[0]}/metadata/cache echo "distfiles/*" > ${PORTAGESDIR}/${PORTAGE_MAINLINE[0]}/.gitignore echo "packages/*" >> ${PORTAGESDIR}/${PORTAGE_MAINLINE[0]}/.gitignore @@ -119,9 +119,9 @@ for OVERLAY in ${SYNC_OVERLAYS[*]}; do TEMP="\${$OVERLAY[*]}" CURRENT_OVERLAY=(`eval echo ${TEMP}`) if ! hasElement "${CURRENT_OVERLAY[0]}" ${EZNOSYNC}; then - printInfo "Synchronizing overlay: ${CURRENT_OVERLAY[0]}..." + printInfo "Refreshing overlay: ${CURRENT_OVERLAY[0]}..." pullRepository ${OVERLAYSDIR}/${CURRENT_OVERLAY[0]} ${CURRENT_OVERLAY[1]} ${CURRENT_OVERLAY[2]} ${CURRENT_OVERLAY[3]} - [ ${?} -ne 0 ] && fail "EzBuild was unable to synchronize ${CURRENT_OVERLAY[0]}!" 4 + [ ${?} -ne 0 ] && fail "EzBuild was unable to refresh ${CURRENT_OVERLAY[0]}!" 4 fi done