Skip to content

Commit

Permalink
Fix error message when security-updates test fails (#2568)
Browse files Browse the repository at this point in the history
The error message says that `disable-targets.tests.security-updates` must be set to false if I want to disable security checks. This doesn't work. After searching around a bit, I found this comment: #1440 (comment). It seems that it should be set to true (and it makes sense, because the key name is `disable-targets`).
  • Loading branch information
hussainweb authored and grasmash committed Feb 22, 2018
1 parent 33f6007 commit 5282e4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Robo/Commands/Tests/SecurityUpdatesCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function testsSecurityUpdates() {
->run();

if ($result->getExitCode()) {
$this->logger->notice('To disable security checks, set disable-targets.tests.security-updates to false in blt.yml.');
$this->logger->notice('To disable security checks, set disable-targets.tests.security-updates to true in blt.yml.');
return 1;
}
else {
Expand Down

0 comments on commit 5282e4a

Please sign in to comment.