diff options
| author | Jack Nagel | 2011-09-12 14:55:17 -0500 |
|---|---|---|
| committer | Jack Nagel | 2011-09-12 15:07:54 -0500 |
| commit | 93a1fc6988dbeb2395201442d70b10e15a529036 (patch) | |
| tree | 29d044f0e7b108ea4dd46a87a458f829ee8266f8 | |
| parent | c9c711a988eb4631554dd9cefb2cc10432c77ec4 (diff) | |
| download | homebrew-93a1fc6988dbeb2395201442d70b10e15a529036.tar.bz2 | |
Append missing trailing newlines
A few formulae are missing trailing newlines.
Let's be POSIXly correct about trailing newlines, which are part of the
definition of a "line" and hence a "file". Even "diff" has it's own
special handling for files without trailing newlines.
Perhaps an audit check is in order.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/jetty.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/libyaml.rb | 2 | ||||
| -rw-r--r-- | Library/Formula/mariadb.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/jetty.rb b/Library/Formula/jetty.rb index b9b0e8005..a2fb5f62b 100644 --- a/Library/Formula/jetty.rb +++ b/Library/Formula/jetty.rb @@ -24,4 +24,4 @@ class Jetty < Formula chmod 0755, bin+scriptname end end -end
\ No newline at end of file +end diff --git a/Library/Formula/libyaml.rb b/Library/Formula/libyaml.rb index a999cace6..d5e84dd65 100644 --- a/Library/Formula/libyaml.rb +++ b/Library/Formula/libyaml.rb @@ -23,4 +23,4 @@ class Libyaml < Formula system './configure', *args system "make install" end -end
\ No newline at end of file +end diff --git a/Library/Formula/mariadb.rb b/Library/Formula/mariadb.rb index 22d47249e..ad6c5d058 100644 --- a/Library/Formula/mariadb.rb +++ b/Library/Formula/mariadb.rb @@ -107,4 +107,4 @@ class Mariadb < Formula </plist> EOPLIST end -end
\ No newline at end of file +end |
