Skip to content

Commit 7820454

Browse files
xiciluanDaniel Kozlowski
authored andcommitted
new line after print out message (#13)
1 parent 61bd5c3 commit 7820454

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/workflow/ArcanistDiffWorkflow.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -358,18 +358,18 @@ private function runRebaseToStable() {
358358
}
359359
if (file_exists(".git/rebase-merge")) {
360360
$do_rebase = false;
361-
echo "It seems like you are in the middle of a rebase already; will not perform auto-rebase.";
361+
echo "It seems like you are in the middle of a rebase already; will not perform auto-rebase.\n";
362362
return true;
363363
}
364364
exec('git remote get-url origin', $remote_url, $git_remote_retval);
365365
if ($git_remote_retval == 1) {
366366
$do_rebase = false;
367-
echo "Failed to execute `git remote get-url origin`, please check if you are under the correct repo.";
367+
echo "Failed to execute `git remote get-url origin`, please check if you are under the correct repo.\n";
368368
return true;
369369
}
370370
if ($remote_url[0] != "git@github.com:robinhoodmarkets/rh.git" && $remote_url[0] != "git@github.com:robinhoodmarkets/rh" && $remote_url[0] != "ssh://git@github.com/robinhoodmarkets/rh.git") {
371371
$do_rebase = false;
372-
echo "Will not perform auto-rebase since you are currently outside of `rh` monorepo.";
372+
echo "Will not perform auto-rebase since you are currently outside of `rh` monorepo.\n";
373373
return true;
374374
}
375375
if ($do_rebase) {

0 commit comments

Comments
 (0)