@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

authored by

Aviv Eyal and committed by
avivey
f6c98a55 37893ba2

+2 -1
+2 -1
src/applications/config/check/PhabricatorBinariesSetupCheck.php
··· 96 96 'You have at least one repository configured which uses this '. 97 97 'version control system. It will not work without the VCS binary.'); 98 98 $this->raiseWarning($binary, $message); 99 + continue; 99 100 } 100 101 101 102 $version = null; 102 - switch ($binary) { 103 + switch ($vcs['versionControlSystem']) { 103 104 case PhabricatorRepositoryType::REPOSITORY_TYPE_GIT: 104 105 $minimum_version = null; 105 106 $bad_versions = array();