Explorar el Código

autotest.sh: Add PHPUNIT_EXE environment variable

Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
tags/v23.0.0beta1
Daniel Rudolf hace 2 años
padre
commit
b3206de736
No account linked to committer's email address
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4
    1
      autotest.sh

+ 4
- 1
autotest.sh Ver fichero

@@ -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


Cargando…
Cancelar
Guardar