Skip to content

Commit 71aa5be

Browse files
authored
Merge pull request #71 from laminas/1.11.x-merge-up-into-1.12.x_iq97CSEN
Merge release 1.11.4 into 1.12.x
2 parents 8a3a69d + ca94c95 commit 71aa5be

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/create-jobs.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -181,13 +181,12 @@ function checks (config) {
181181
*/
182182
function (config) {
183183
const composerFile = parseJsonFile('composer.json', false);
184-
let commandToExecute = './vendor/bin/infection';
185184

186185
if (composerFile.hasOwnProperty('require-dev') && composerFile['require-dev'].hasOwnProperty('roave/infection-static-analysis-plugin')) {
187-
commandToExecute = './vendor/bin/roave-infection-static-analysis-plugin';
186+
return createQaJobs('phpdbg -qrr ./vendor/bin/roave-infection-static-analysis-plugin', config);
188187
}
189188

190-
return createQaJobs(commandToExecute, config);
189+
return createQaJobs('phpdbg -qrr ./vendor/bin/infection', config);
191190
}
192191
),
193192
new Check(

0 commit comments

Comments
 (0)