From 5d2a86db476f2600991b8dcf57499a270e97dff3 Mon Sep 17 00:00:00 2001 From: Robbie Averill Date: Mon, 22 Feb 2016 13:52:12 +1300 Subject: [PATCH] Fix #5071 - add newline to default no-arg message in cli-script.php --- cli-script.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli-script.php b/cli-script.php index 0a8808528b0..48a87b38dfa 100755 --- a/cli-script.php +++ b/cli-script.php @@ -110,7 +110,7 @@ $url = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : null; if(!$url) { echo 'Please specify an argument to cli-script.php/sake. For more information, visit' - . ' http://docs.silverstripe.org/en/developer_guides/cli'; + . ' http://docs.silverstripe.org/en/developer_guides/cli' . "\n"; die(); }