mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Use more modern detection of repositories in "arc close-revision"
Summary: Fixes T4603. We fire `arc close-revision --finalize` implicitly from `arc land`, which may close a corresponding Differential revision. We want to close if the repository is not present in Phabricator (i.e., we'll never be able to close in response to the commit message, since we'll never see it). Historically, we used Arcanist Project -> "Tracked" to make this determination. Instead, just check if the working copy is associated with a repository. This is simpler, easier, and works better. Test Plan: Ran `arc close-revision --finalize`. Reviewers: btrahan Reviewed By: btrahan Subscribers: aran, epriestley Maniphest Tasks: T4603 Differential Revision: https://secure.phabricator.com/D8523
This commit is contained in:
parent
03ddc17032
commit
1e6d958b27
1 changed files with 1 additions and 2 deletions
|
@ -112,8 +112,7 @@ EOTEXT
|
|||
|
||||
$actually_close = true;
|
||||
if ($is_finalize) {
|
||||
$project_info = $this->getProjectInfo();
|
||||
if (idx($project_info, 'tracked') ||
|
||||
if ($this->getRepositoryPHID() ||
|
||||
$revision['status'] != $status_accepted) {
|
||||
$actually_close = false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue