From 7e84853c379f96c14a5eaf43ba8932791a726c78 Mon Sep 17 00:00:00 2001 From: Artem Smirnov Date: Tue, 19 Jun 2018 13:39:37 +0300 Subject: [PATCH] image_builder: small echo fix --- image_builder/scripts/software_install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image_builder/scripts/software_install.sh b/image_builder/scripts/software_install.sh index 3b058317..3bd67bf1 100755 --- a/image_builder/scripts/software_install.sh +++ b/image_builder/scripts/software_install.sh @@ -6,7 +6,7 @@ set -e # Image software installation ################################################################################################################################## -echo -e "\033[0;31m\033[1m$(date) | #1 Network installing\033[0m\033[0m" +echo -e "\033[0;31m\033[1m$(date) | #1 Software installing\033[0m\033[0m" # TODO: Use dnsmasq instead of isc-dhcp-server apt-get install --no-install-recommends -y \ @@ -25,4 +25,4 @@ apt-get install --no-install-recommends -y \ ipython3 \ python3-pip -echo -e "\033[0;31m\033[1m$(date) | End of network installation\033[0m\033[0m" +echo -e "\033[0;31m\033[1m$(date) | End of software installation\033[0m\033[0m"