From 217250c0e0d755607b95c9c4c49b3319b5e2de92 Mon Sep 17 00:00:00 2001 From: dimti Date: Sun, 17 Sep 2023 10:30:43 +0300 Subject: [PATCH] * correct equals in xdebug helper scripts --- bash/xdebug-quit.sh | 2 +- bash/xdebug-start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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