Fix #5071 - add newline to default no-arg message in cli-script.php

This commit is contained in:
Robbie Averill 2016-02-22 13:52:12 +13:00
parent 17b42a3f89
commit 5d2a86db47
1 changed files with 1 additions and 1 deletions

View File

@ -110,7 +110,7 @@ DB::connect($databaseConfig);
$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();
}