From 9f5a7e4c08602b764932ec0cfd742793481f44cb Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 19 Jan 2017 09:58:31 -0800 Subject: [PATCH] cloudron-setup: keep the cursor in the same line --- scripts/cloudron-setup | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/cloudron-setup b/scripts/cloudron-setup index 35cc1e68b..bbf5313a2 100755 --- a/scripts/cloudron-setup +++ b/scripts/cloudron-setup @@ -201,11 +201,12 @@ if ! curl -sL "${sourceTarballUrl}" | tar -zxf - -C "${box_src_tmp_dir}"; then fi if [[ "${initBaseImage}" == "true" ]]; then - echo "=> Installing base dependencies and downloading docker images (this takes some time) ..." + echo -n "=> Installing base dependencies and downloading docker images (this takes some time) ..." if ! /bin/bash "${box_src_tmp_dir}/baseimage/initializeBaseUbuntuImage.sh" "${provider}" "../src" &>> "${LOG_FILE}"; then echo "Init script failed. See ${LOG_FILE} for details" exit 1 fi + echo "" fi echo "=> Installing version ${version} (this takes some time) ..."