Skip to content

Commit

Permalink
Fix unbound variable issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierstoval committed Oct 18, 2024
1 parent 2e14572 commit 1fecf62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/test_tests-phpunit.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e -u -x -o pipefail

PHPUNIT_ADDITIONNAL_OPTIONS=""
if [[ "$CODE_COVERAGE" = true ]]; then
if [[ "${CODE_COVERAGE:-}" = true ]]; then
export COVERAGE_DIR="coverage-functional"
PHPUNIT_ADDITIONNAL_OPTIONS="--coverage-filter src --coverage-clover phpunit/$COVERAGE_DIR/clover.xml"

Expand Down

0 comments on commit 1fecf62

Please sign in to comment.