We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61a6c2c commit 6263b56Copy full SHA for 6263b56
scripts/makefile/xdebug.sh
@@ -16,12 +16,14 @@ xdebug_status() {
16
}
17
18
xdebug_find_file() {
19
- if [ -f /etc/php8/conf.d/50_xdebug.ini ]; then
20
- echo /etc/php8/conf.d/50_xdebug.ini
21
- elif [ -f /etc/php81/conf.d/50_xdebug.ini ]; then
+ if [ -f /etc/php81/conf.d/50_xdebug.ini ]; then
22
echo /etc/php81/conf.d/50_xdebug.ini
+ elif [ -f /etc/php82/conf.d/50_xdebug.ini ]; then
+ echo /etc/php82/conf.d/50_xdebug.ini
23
+ elif [ -f /etc/php8/conf.d/50_xdebug.ini ]; then
24
+ echo /etc/php8/conf.d/50_xdebug.ini
25
else
- printf "%bXdebug ini file not found%b\n" "${RED}" "${NC}" && exit 1
26
+ printf "%bXdebug ini file not found%b\n" "${RED}" "${NC}" && exit 1
27
fi
28
29
0 commit comments