diff --git a/bash/xdebug-quit.sh b/bash/xdebug-quit.sh index 45b9260..94bd4f0 100755 --- a/bash/xdebug-quit.sh +++ b/bash/xdebug-quit.sh @@ -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 diff --git a/bash/xdebug-start.sh b/bash/xdebug-start.sh index 59d29c6..f4692eb 100755 --- a/bash/xdebug-start.sh +++ b/bash/xdebug-start.sh @@ -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