summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorRenato Botelho <renato@netgate.com>2016-05-04 18:10:23 -0300
committerRenato Botelho <renato@netgate.com>2016-05-04 18:10:47 -0300
commit3f167b737aebd6dfbfd0af8d74c7570c72e4d56a (patch)
treea3b6a02c9a025658951cf3c6bffd4b4bfef4c815 /tools
parent0cd22307136b501d4ff6657b72b9bf2cb8a59676 (diff)
downloadpfsense-3f167b737aebd6dfbfd0af8d74c7570c72e4d56a.zip
pfsense-3f167b737aebd6dfbfd0af8d74c7570c72e4d56a.tar.gz
Improve log messages
Diffstat (limited to 'tools')
-rw-r--r--tools/builder_common.sh7
1 files changed, 4 insertions, 3 deletions
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
}
OpenPOWER on IntegriCloud