Skip to content

Commit

Permalink
Fix #5071 - add newline to default no-arg message in cli-script.php
Browse files Browse the repository at this point in the history
  • Loading branch information
robbieaverill committed Feb 22, 2016
1 parent 17b42a3 commit 5d2a86d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli-script.php
Original file line number Diff line number Diff line change
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 5d2a86d

Please sign in to comment.