mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Don't raise setup warning for "bad version" if the binary is not there
Test Plan: warning is not in warnings list. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D14594
This commit is contained in:
parent
37893ba2e6
commit
f6c98a55a4
1 changed files with 2 additions and 1 deletions
|
@ -96,10 +96,11 @@ final class PhabricatorBinariesSetupCheck extends PhabricatorSetupCheck {
|
|||
'You have at least one repository configured which uses this '.
|
||||
'version control system. It will not work without the VCS binary.');
|
||||
$this->raiseWarning($binary, $message);
|
||||
continue;
|
||||
}
|
||||
|
||||
$version = null;
|
||||
switch ($binary) {
|
||||
switch ($vcs['versionControlSystem']) {
|
||||
case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT:
|
||||
$minimum_version = null;
|
||||
$bad_versions = array();
|
||||
|
|
Loading…
Reference in a new issue