updated the grunt-saucelabs pointer, until pr gets merged

This commit is contained in:
Spencer Alger
2014-01-15 03:35:23 -07:00
parent 8b118ccfa6
commit 94692a9df0
2 changed files with 6 additions and 4 deletions

View File

@ -2,10 +2,12 @@
# Start or stop a group for travis
#####
function group {
if [ $1 =~ "^start" ]; then
echo -e "\n--------- $1"
re='start:'
if [[ $1 =~ $re ]]; then
echo -e "\n\033[4m\033[1m$1\033[0m\033[0m"
else
echo -e "--------- $1\n"
echo -e "-- $1 --\n"
fi
}