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

@ -48,7 +48,7 @@
"expect.js": "~0.2.0",
"aliasify": "~1.2.1",
"express": "~3.4.7",
"grunt-saucelabs": "https://github.com/axemclion/grunt-saucelabs/archive/master.tar.gz"
"grunt-saucelabs": "git://github.com/spenceralger/grunt-saucelabs.git#mocha_pending_pass"
},
"license": "Apache 2.0",
"dependencies": {

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
}