Skip to content

Commit

Permalink
Merge pull request #5072 from robbieaverill/5071-new-line-after-cli-s…
Browse files Browse the repository at this point in the history
…cript-message

Fix #5071 - add newline to default no-arg message in cli-script.php
  • Loading branch information
Damian Mooyman committed Feb 22, 2016
2 parents 17b42a3 + 5d2a86d commit b4ea87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli-script.php
Expand Up @@ -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();
}

Expand Down

0 comments on commit b4ea87a

Please sign in to comment.