mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
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:
commit
b4ea87a3bf
@ -110,7 +110,7 @@ DB::connect($databaseConfig);
|
|||||||
$url = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : null;
|
$url = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1] : null;
|
||||||
if(!$url) {
|
if(!$url) {
|
||||||
echo 'Please specify an argument to cli-script.php/sake. For more information, visit'
|
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();
|
die();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user