Use non-zero exit code when app is not compliant (so CIs can detect the status)
This commit is contained in:
parent
ceb80ac123
commit
e5bc50d156
1 changed files with 1 additions and 0 deletions
|
@ -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…
Reference in a new issue