mirror of
https://github.com/nextcloud/server.git
synced 2026-04-21 14:23:17 -04:00
autotest.sh: Add PHPUNIT_EXE environment variable
Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
This commit is contained in:
parent
fc4e1d3c42
commit
b3206de736
1 changed files with 4 additions and 1 deletions
|
|
@ -29,7 +29,10 @@ if [ -z "$PHP_EXE" ]; then
|
|||
PHP_EXE=php
|
||||
fi
|
||||
PHP=$(which "$PHP_EXE")
|
||||
PHPUNIT=$(which phpunit)
|
||||
if [ -z "$PHPUNIT_EXE" ]; then
|
||||
PHPUNIT_EXE=phpunit
|
||||
fi
|
||||
PHPUNIT=$(which "$PHPUNIT_EXE")
|
||||
|
||||
set -e
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue