From 77998feb8c14fbad565323ed93718628bf16d24c Mon Sep 17 00:00:00 2001 From: Spencer Alger Date: Wed, 15 Jan 2014 01:51:35 -0700 Subject: [PATCH] Well that helped no one --- scripts/_utils.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/_utils.sh b/scripts/_utils.sh index 7ae2f83af..c5dad52ea 100644 --- a/scripts/_utils.sh +++ b/scripts/_utils.sh @@ -2,9 +2,11 @@ # Start or stop a group for travis ##### function group { - # if [ -n "$TRAVIS" ]; then - # echo -e "travis_fold:${1// /_}" - # fi + if [ $1 =~ "^start"]; then + echo -e "\n--------- $1" + else + echo -e "--------- $1\n" + fi } #####