Well that helped no one

This commit is contained in:
Spencer Alger
2014-01-15 01:51:35 -07:00
parent 4981852080
commit 77998feb8c

View File

@ -2,9 +2,11 @@
# Start or stop a group for travis # Start or stop a group for travis
##### #####
function group { function group {
# if [ -n "$TRAVIS" ]; then if [ $1 =~ "^start"]; then
# echo -e "travis_fold:${1// /_}" echo -e "\n--------- $1"
# fi else
echo -e "--------- $1\n"
fi
} }
##### #####