mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fix #5071 - add newline to default no-arg message in cli-script.php
This commit is contained in:
parent
17b42a3f89
commit
5d2a86db47
@ -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();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user