mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 16:22:42 +01:00
Check for untracked files in order to fire untracked file prompt
Summary: Fixes T7465. I think I just missed this when untangling the old logic. Test Plan: Ran `arc diff` with //only// untrakced files, saw warning. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Maniphest Tasks: T7465 Differential Revision: https://secure.phabricator.com/D11990
This commit is contained in:
parent
4e98454840
commit
c36b4ceb18
1 changed files with 1 additions and 1 deletions
|
@ -881,7 +881,7 @@ abstract class ArcanistWorkflow extends Phobject {
|
||||||
}
|
}
|
||||||
|
|
||||||
$should_commit = false;
|
$should_commit = false;
|
||||||
if ($unstaged || $uncommitted) {
|
if ($untracked || $unstaged || $uncommitted) {
|
||||||
|
|
||||||
// NOTE: We're running this because it builds a cache and can take a
|
// NOTE: We're running this because it builds a cache and can take a
|
||||||
// perceptible amount of time to arrive at an answer, but we don't want
|
// perceptible amount of time to arrive at an answer, but we don't want
|
||||||
|
|
Loading…
Reference in a new issue