summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/builder_common.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/builder_common.sh b/tools/builder_common.sh
index 95c6eaa..39e2735 100644
--- a/tools/builder_common.sh
+++ b/tools/builder_common.sh
@@ -793,7 +793,7 @@ create_ova_image() {
ova_remove_old_tmp_files
ova_setup_ovf_template
ova_create_raw_backed_file
- /bin/echo -n ">>> Creating mdconfig image ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw... " | tee -a ${LOGFILE}
+ echo ">>> Creating mdconfig image ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw... " | tee -a ${LOGFILE}
MD=$(mdconfig -a -t vnode -f ${IMAGES_FINAL_DIR}/${OVFVMDK}.raw)
# Just in case
trap "mdconfig -d -u ${MD}" 1 2 15 EXIT
@@ -894,7 +894,7 @@ ova_prereq_check() {
# called from create_ova_image
ova_calculate_mnt_size() {
- /bin/echo -n ">>> Calculating size of /mnt..." | tee -a ${LOFGILE}
+ echo -n ">>> Calculating size of /mnt..." | tee -a ${LOFGILE}
INSTALLSIZE=$(du -s /mnt/ | awk '{ print $1 }')
INSTALLSIZEH=$(du -d0 -h /mnt/ | awk '{ print $1 }')
echo $INSTALLSIZEH
OpenPOWER on IntegriCloud