Merge pull request #5072 from robbieaverill/5071-new-line-after-cli-script-message

Fix #5071 - add newline to default no-arg message in cli-script.php
This commit is contained in:
Damian Mooyman 2016-02-22 16:08:27 +13:00
commit b4ea87a3bf

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();
}