Browse Source

autotest.sh: Add PHPUNIT_EXE environment variable

Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
tags/v23.0.0beta1
Daniel Rudolf 2 years ago
parent
commit
b3206de736
No account linked to committer's email address
1 changed files with 4 additions and 1 deletions
  1. 4
    1
      autotest.sh

+ 4
- 1
autotest.sh View File

PHP_EXE=php PHP_EXE=php
fi fi
PHP=$(which "$PHP_EXE") PHP=$(which "$PHP_EXE")
PHPUNIT=$(which phpunit)
if [ -z "$PHPUNIT_EXE" ]; then
PHPUNIT_EXE=phpunit
fi
PHPUNIT=$(which "$PHPUNIT_EXE")


set -e set -e



Loading…
Cancel
Save