Browse Source

* correct equals in xdebug helper scripts

master
dimti 8 months ago
parent
commit
217250c0e0
  1. 2
      bash/xdebug-quit.sh
  2. 2
      bash/xdebug-start.sh

2
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

2
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

Loading…
Cancel
Save