Use non-zero exit code when app is not compliant (so CIs can detect the status)

remotes/origin/enc_quick_fix_8.1
Joas Schilling 11 years ago
parent ceb80ac123
commit e5bc50d156
  1. 1
      core/command/app/checkcode.php

@ -73,6 +73,7 @@ class CheckCode extends Command {
$output->writeln('<info>App is compliant - awesome job!</info>');
} else {
$output->writeln('<error>App is not compliant</error>');
return 1;
}
}
}

Loading…
Cancel
Save