--- trunk/mage/usr/lib/mage/mage4.functions.sh 2011/12/29 15:12:05 1590 +++ trunk/mage/usr/lib/mage/mage4.functions.sh 2011/12/30 10:07:18 1599 @@ -3336,17 +3336,17 @@ do if [[ ${MAGE_FEATURES_CURRENT[${i}]} = ${feature} ]] then - [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' already enabled" + [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' already enabled${COLDEFAULT}" MAGE_FEATURES_CURRENT[${i}]="${feature}" found=1 elif [[ ${MAGE_FEATURES_CURRENT[${i}]} = !${feature} ]] then - [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' currently disabled, enabling it!" + [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' currently disabled, enabling it!${COLDEFAULT}" MAGE_FEATURES_CURRENT[${i}]="${feature}" found=1 elif [[ ${MAGE_FEATURES_CURRENT[${i}]} = ${feature//!} ]] then - [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature//!}' currently enabled, disabling it!" + [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature//!}' currently enabled, disabling it!${COLDEFAULT}" MAGE_FEATURES_CURRENT[${i}]="${feature}" found=1 fi @@ -3356,7 +3356,7 @@ # it was not declared. in this case enable it if [[ ${found} = 0 ]] then - [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' was not declared, enabling it!" + [[ ${FVERBOSE} = off ]] || echo -e "${COLBLUE}---${COLGREEN} Feature '${feature}' was not declared, enabling it!${COLDEFAULT}" MAGE_FEATURES_CURRENT=( ${MAGE_FEATURES_CURRENT[*]} "${feature}" ) fi