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.
2 parents 034a005 + ddf4c8e commit 664acedCopy full SHA for 664aced
entrypoint.sh
@@ -134,7 +134,7 @@ if [ -x ".laminas-ci/pre-install.sh" ];then
134
fi
135
136
EXTENSIONS=$(echo "${JOB}" | jq -r ".extensions | map(\"php${PHP}-\"+.) | join(\" \")")
137
-INI=$(echo "${JOB}" | jq -r '.ini | join("{NL}")')
+INI=$(echo "${JOB}" | jq -r '.ini | join("\n")')
138
DEPS=$(echo "${JOB}" | jq -r '.dependencies')
139
140
if [[ "${EXTENSIONS}" != "" ]];then
@@ -160,7 +160,7 @@ fi
160
161
if [[ "${INI}" != "" ]];then
162
echo "Installing php.ini settings"
163
- echo $INI | sed "s/{NL}/\n/g" > /etc/php/${PHP}/cli/conf.d/99-settings.ini
+ echo "$INI" > /etc/php/${PHP}/cli/conf.d/99-settings.ini
164
165
166
echo "PHP version: $(php --version)"
0 commit comments