Skip to content

Commit

Permalink
Added a newline
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuasilver committed Jul 30, 2010
1 parent a27eecc commit 85cca53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion check-for-dos-endings
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ $cmd = "grep -PIlsr '\\r\\n' . | grep -v '.git'";

exec($cmd, $output, $return);
if ($return != 1) {
echo "DOS line endings detected" . implode("\n", $output);
echo "DOS line endings detected\n" . implode("\n", $output);
$exit_status = 1;
exit($exit_status);
}
Expand Down

0 comments on commit 85cca53

Please sign in to comment.