* correct equals in xdebug helper scripts

This commit is contained in:
2023-09-17 10:30:43 +03:00
parent a87fc51072
commit 217250c0e0
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@ if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
POSSIBLE_XDEBUG_VERSION=xdebug2
if [[ $PHP_VERSION -gt 81 ]]; then
if [[ $PHP_VERSION -eq 81 ]]; then
POSSIBLE_XDEBUG_VERSION=xdebug3
fi

View File

@ -8,7 +8,7 @@ if [[ -z "${PHP_VERSION}" ]]; then PHP_VERSION=74; fi
POSSIBLE_XDEBUG_VERSION=xdebug2
if [[ $PHP_VERSION -gt 81 ]]; then
if [[ $PHP_VERSION -eq 81 ]]; then
POSSIBLE_XDEBUG_VERSION=xdebug3
fi