Skip to content

Commit 43b90f4

Browse files
Merge pull request #103 from edmondscommerce/FixOutOfDateIniFile
now include PHP version in ini file name for no xdebug to avoid issue…
2 parents d8f9d8d + 18b7ed6 commit 43b90f4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

includes/generic/setConfig.inc.bash

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ varDir="$projectRoot/var/qa";
1212

1313
cacheDir="$varDir/cache";
1414

15-
noXdebugConfigPath="$varDir/phpqa-no-xdebug.ini"
15+
phpVersion="$(php -v | grep ^PHP | cut -d' ' -f2)"
16+
noXdebugConfigPath="$varDir/phpqa-no-xdebug.$phpVersion.ini"
1617

1718
# the path in this library for default config
1819
defaultConfigPath="$(readlink -f ./../configDefaults/)"

0 commit comments

Comments
 (0)