pespin has uploaded this change for review. ( https://gerrit.osmocom.org/c/libosmocore/+/41547?usp=email )
Change subject: osmo-release.sh: Fix coloring output under bash ......................................................................
osmo-release.sh: Fix coloring output under bash
Change-Id: Ib9e33ec8650ad8bc2e4b1893d9a7195c041c52dc --- M osmo-release.sh 1 file changed, 3 insertions(+), 3 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/libosmocore refs/changes/47/41547/1
diff --git a/osmo-release.sh b/osmo-release.sh index 5a9584c..c2e077e 100755 --- a/osmo-release.sh +++ b/osmo-release.sh @@ -36,15 +36,15 @@ YELLOW="\033[1;33m"
ok() { - echo "${GREEN}OK:${RESET} $@" + echo -e "${GREEN}OK:${RESET} $@" }
warn() { - echo "${YELLOW}WARN:${RESET} $@" + echo -e "${YELLOW}WARN:${RESET} $@" }
error() { - echo "${RED}ERROR:${RESET} $@" + echo -e "${RED}ERROR:${RESET} $@" }
libversion_to_lib_major() {