From 4671788519d78ee0677e0cbc74380b373d8d08f0 Mon Sep 17 00:00:00 2001 From: Romeo-Golf Date: Fri, 30 Dec 2016 20:30:24 +0000 Subject: [PATCH] Formatting updates to OGN and HAB decoders --- bash/decoders/rtlsdr-ogn.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bash/decoders/rtlsdr-ogn.sh b/bash/decoders/rtlsdr-ogn.sh index d23baa9..fd8ecb1 100755 --- a/bash/decoders/rtlsdr-ogn.sh +++ b/bash/decoders/rtlsdr-ogn.sh @@ -150,7 +150,7 @@ fi # Detect CPU Architecture. if [[ -z ${CPU_ARCHITECTURE} ]] ; then - echo -e "\e[33m Detecting CPU architecture...\t\t\t" + echo -en "\e[33m Detecting CPU architecture...\t\t\t" CPU_ARCHITECTURE=`uname -m | tr -d "\n\r" ` CheckReturnCode fi @@ -359,9 +359,9 @@ fi # Test if config file exists, if not create it. if [[ -s ${DECODER_BUILD_DIRECTORY}/rtlsdr-ogn/${OGN_RECEIVER_NAME}.conf ]] ; then - echo -e "\e[33m Using existing ${DECODER_NAME} config file at \"\e[37m${OGN_RECEIVER_NAME}.conf\e[33m\"...\e [97m\t" + echo -en "\e[33m Using existing ${DECODER_NAME} config file at \"\e[37m${OGN_RECEIVER_NAME}.conf\e[33m\"...\e [97m\t" else - echo -e "\e[33m Generating new ${DECODER_NAME} config file as \"\e[37m${OGN_RECEIVER_NAME}.conf\e[33m\"...\e [97m\t" + echo -en "\e[33m Generating new ${DECODER_NAME} config file as \"\e[37m${OGN_RECEIVER_NAME}.conf\e[33m\"...\e [97m\t" sudo tee ${DECODER_BUILD_DIRECTORY}/rtlsdr-ogn/${OGN_RECEIVER_NAME}.conf > /dev/null 2>&1 <