From 3f167b737aebd6dfbfd0af8d74c7570c72e4d56a Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Wed, 4 May 2016 18:10:23 -0300 Subject: Improve log messages --- tools/builder_common.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'tools') diff --git a/tools/builder_common.sh b/tools/builder_common.sh index 1530cb5..979a4e9 100644 --- a/tools/builder_common.sh +++ b/tools/builder_common.sh @@ -316,16 +316,17 @@ build_all_kernels() { ensure_kernel_exists $KERNEL_DESTDIR - echo -n ">>> Creating pkg of $KERNEL_NAME-debug kernel to staging area..." | tee -a ${LOGFILE} + echo -n ">>> Creating pkg of $KERNEL_NAME-debug kernel to staging area... " | tee -a ${LOGFILE} core_pkg_create kernel-debug ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR} \*.symbols find ${KERNEL_DESTDIR} -name '*.symbols' -type f -delete + echo " Done" | tee -a ${LOGFILE} - echo -n ">>> Creating pkg of $KERNEL_NAME kernel to staging area..." | tee -a ${LOGFILE} + echo -n ">>> Creating pkg of $KERNEL_NAME kernel to staging area... " | tee -a ${LOGFILE} core_pkg_create kernel ${KERNEL_NAME} ${CORE_PKG_VERSION} ${KERNEL_DESTDIR} rm -rf $KERNEL_DESTDIR 2>&1 1>/dev/null - echo ".Done" | tee -a ${LOGFILE} + echo " Done" | tee -a ${LOGFILE} done } -- cgit v1.1