mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix a newline issue in "arc" workflows
Summary: We end up with one too few newline here in some workflows, like `arc land` with unstaged changes. Root issue here is that `phutil_console_prompt|confirm` lead with too much whitespace but that's a harder fix. Test Plan: Saw reasonable whitespace. Reviewers: btrahan, chad Reviewed By: chad Subscribers: epriestley Differential Revision: https://secure.phabricator.com/D11927
This commit is contained in:
parent
d8182cf55d
commit
4e98454840
1 changed files with 1 additions and 1 deletions
|
@ -930,7 +930,7 @@ abstract class ArcanistWorkflow extends Phobject {
|
|||
$uncommitted_list);
|
||||
}
|
||||
|
||||
echo implode("\n\n", $lists);
|
||||
echo implode("\n\n", $lists)."\n";
|
||||
|
||||
$all_uncommitted = array_merge($unstaged, $uncommitted);
|
||||
if ($this->askForAdd($all_uncommitted)) {
|
||||
|
|
Loading…
Reference in a new issue