Over at Can you modify text files when committing to subversion? Grant suggested that I block commits instead.
However I don't know how to check a file ends with a newline. How can you detect that the file ends with a newline?
|
1
|
Over at Can you modify text files when committing to subversion? Grant suggested that I block commits instead. However I don't know how to check a file ends with a newline. How can you detect that the file ends with a newline?
|
||
|
|
|
|
This answer worked well for me. |
||
|
|
|
|
@Konrad: tail does not return an empty line. I made a file that has some text that doesn't end in newline and a file that does. Here is the output from tail:
Though I found that tail has get last byte option. So I modified your script to:
|
|||
|
|
|
|
Using only
(Take care to copy the whitespaces correctly!) @grom:
Damn. My test file didn't end on |
|||
|
|
|
|
You could use something like this as your pre-commit script:
#! /usr/bin/perl
while (<>) {
$last = $_;
}
if (! ($last =~ m/\n$/)) {
print STDERR "File doesn't end with \\n!\n";
exit 1;
}
|
|||
|
|
|
|
You should be able to do it via a SVN pre-commit hook. See this example. |
||
|
|