1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

fix: update brew template to use tilde heredoc syntax

This commit is contained in:
Olivier Bellone 2018-02-06 10:08:20 -08:00 committed by Carlos Alexandro Becker
parent 681393119f
commit f2edd97c15
5 changed files with 5 additions and 5 deletions

View File

@ -58,7 +58,7 @@ const formulaTemplate = `class {{ .Name }} < Formula
plist_options :startup => false
def plist; <<-EOS.undent
def plist; <<~EOS
{{ .Plist }}
EOS
end

View File

@ -21,7 +21,7 @@ class RunPipe < Formula
plist_options :startup => false
def plist; <<-EOS.undent
def plist; <<~EOS
<xml>whatever</xml>
EOS
end

View File

@ -21,7 +21,7 @@ class RunPipe < Formula
plist_options :startup => false
def plist; <<-EOS.undent
def plist; <<~EOS
<xml>whatever</xml>
EOS
end

View File

@ -21,7 +21,7 @@ class RunPipe < Formula
plist_options :startup => false
def plist; <<-EOS.undent
def plist; <<~EOS
<xml>whatever</xml>
EOS
end

View File

@ -20,7 +20,7 @@ class Test < Formula
plist_options :startup => false
def plist; <<-EOS.undent
def plist; <<~EOS
it works
EOS
end