From 9257f1bc85850d2c381cbb9e18536f09a5271a21 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Wed, 18 Jun 2014 08:07:02 +1000 Subject: [PATCH] Add a newline to the output of `arc help --full`. Summary: The output from `arc help --full` is missing a newline character. Test Plan: **Before** ``` > arc help --full --skip-arcconfig Skip the working copy configuration file --arcrc-file filename Use provided file instead of ~/.arcrc.> ``` **After** ``` > arc help --full --skip-arcconfig Skip the working copy configuration file --arcrc-file filename Use provided file instead of ~/.arcrc. > ``` Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D9608 --- src/workflow/ArcanistHelpWorkflow.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/workflow/ArcanistHelpWorkflow.php b/src/workflow/ArcanistHelpWorkflow.php index 27789149..f489619e 100644 --- a/src/workflow/ArcanistHelpWorkflow.php +++ b/src/workflow/ArcanistHelpWorkflow.php @@ -208,6 +208,7 @@ EOTEXT __--arcrc-file__ __filename__ Use provided file instead of ~/.arcrc. + EOTEXT ); }