AucTeX: Fix caveats
Ending `def caveats` with `puts <<-EOS` causes text to be printed whenever the formula is imported (which confuses the output of things like `brew audit`). A plain `<<-EOS` should be used. Closes Homebrew/homebrew#7303.
This commit is contained in:
parent
9b0487af96
commit
832b5ab7a7
1 changed files with 1 additions and 1 deletions
|
@ -61,7 +61,7 @@ class Auctex < Formula
|
|||
EOS
|
||||
end
|
||||
|
||||
puts <<-EOS.undent
|
||||
<<-EOS.undent
|
||||
* texmf files installed into
|
||||
#{HOMEBREW_PREFIX}/share/texmf/
|
||||
you can add it to your TEXMFHOME using:
|
||||
|
|
Loading…
Reference in a new issue