Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 15dc071

Browse files

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis/run-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ for tested in "${testedcomponents[@]}"
88
do
99
echo "$tested:"
1010
phpunit -c $testdir/phpunit.xml $testdir/$tested
11-
let "result = $result || $?"
11+
result=$(($result || $?))
1212
done
1313

14-
exit $result
14+
exit $result

.travis/tested-components

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Zend/Crypt
1010
Zend/Currency
1111
Zend/Db
1212
Zend/Di
13-
Zend/Docbook
13+
Zend/DocBook
1414
Zend/Dojo
1515
Zend/Dom
1616
Zend/EventManager

0 commit comments

Comments
 (0)