From: Luis R. Rodriguez Date: Fri, 2 Oct 2009 23:25:56 +0000 (-0700) Subject: admin-update: fix a print, use echo -e X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=d3d0753191b86d08e48cdf5cb503c56533db03a5;p=openwrt%2Fstaging%2Fblogic.git admin-update: fix a print, use echo -e Signed-off-by: Luis R. Rodriguez --- diff --git a/scripts/admin-update.sh b/scripts/admin-update.sh index cb42fe72f78a..0e12831e0e40 100755 --- a/scripts/admin-update.sh +++ b/scripts/admin-update.sh @@ -211,7 +211,7 @@ if [ -d ./.git ]; then echo -e "This is a ${RED}bleeding edge${NORMAL} compat-wireless release based on: ${PURPLE}$MASTER_TAG${NORMAL}" ;; "linux-2.6-allstable.git") # HPA's all stable tree - echo "This is a ${GREEN}stable${NORMAL} compat-wireless release based on: ${PURPLE}$(git describe --abbrev=0)${NORMAL}" + echo -e "This is a ${GREEN}stable${NORMAL} compat-wireless release based on: ${PURPLE}$(git describe --abbrev=0)${NORMAL}" ;; "linux-2.6.git") # Linus' 2.6 tree ;;