git: Update abort message, remove break

This commit is contained in:
Oliver Davies 2020-05-23 00:02:05 +01:00
parent f98ebdba1e
commit 89ef98a15b

View file

@ -38,8 +38,7 @@ class ClosesPullRequests
// TODO: Check for failures, or skip if there is no CI. // TODO: Check for failures, or skip if there is no CI.
switch (exec('hub ci-status')) { switch (exec('hub ci-status')) {
case self::CI_PENDING: case self::CI_PENDING:
die('CI pending'); die('Aborting: CI pending');
break;
} }
} }