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 8a3a69d + ca94c95 commit 71aa5beCopy full SHA for 71aa5be
src/create-jobs.js
@@ -181,13 +181,12 @@ function checks (config) {
181
*/
182
function (config) {
183
const composerFile = parseJsonFile('composer.json', false);
184
- let commandToExecute = './vendor/bin/infection';
185
186
if (composerFile.hasOwnProperty('require-dev') && composerFile['require-dev'].hasOwnProperty('roave/infection-static-analysis-plugin')) {
187
- commandToExecute = './vendor/bin/roave-infection-static-analysis-plugin';
+ return createQaJobs('phpdbg -qrr ./vendor/bin/roave-infection-static-analysis-plugin', config);
188
}
189
190
- return createQaJobs(commandToExecute, config);
+ return createQaJobs('phpdbg -qrr ./vendor/bin/infection', config);
191
192
),
193
new Check(
0 commit comments