Skip to content
This repository was archived by the owner on Aug 13, 2023. It is now read-only.

Commit 782a062

Browse files
committed
Fixing condition for when to run the suite with sauce and when not
1 parent 2c8c2bd commit 782a062

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

travis.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
if [ "${SAUCE_ACCESS_KEY}" = "false" ]; then
3-
grunt ci --verbose; else
2+
if [ -z "$SAUCE_ACCESS_KEY" ]; then
43
npm test
4+
else
5+
grunt ci --verbose
56
fi

0 commit comments

Comments
 (0)