Skip to content

Commit 82ec192

Browse files
committed
Corrects syntax (I think).
1 parent b863d20 commit 82ec192

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ if [ "${DEVELOP}" = "${TRAVIS_BRANCH}" ]; then
2626
npm install -g grunt-cli > /dev/null
2727
npm install > /dev/null
2828
grunt --bail --reporter=dot --endpoint="http://0.0.0.0:8000/data/xAPI/" --username="1484c2ac05269b8c5479a1dd6a0d6370991fd6a1" --password="f0ef3d8062805c0fc1675beb8ac0715c75df13cb" --xapi-version="1.0.1"
29-
if [[ $? != 0 ]]; then exit $?; fi
29+
if [ $? != 0 ]; then exit $?; fi
3030

3131
# Stops the server.
3232
ps aux | grep [p]hp | awk '{print $2}' | xargs kill

0 commit comments

Comments
 (0)