Sfoglia il codice sorgente

autotest.sh: Add PHPUNIT_EXE environment variable

Signed-off-by: Daniel Rudolf <github.com@daniel-rudolf.de>
tags/v23.0.0beta1
Daniel Rudolf 2 anni fa
parent
commit
b3206de736
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 4 aggiunte e 1 eliminazioni
  1. 4
    1
      autotest.sh

+ 4
- 1
autotest.sh Vedi File

@@ -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…
Annulla
Salva