aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJack Nagel2015-01-12 20:35:11 -0500
committerJack Nagel2015-01-12 20:35:11 -0500
commitd989927d3fa5debf8b6633ad58b3b824a47eba03 (patch)
treeaebf052b61110d8ffdad6b84b19df5e483d21a7f /Library
parent57b5d2751bbfda337232500b92f2ee3ff7ec81ad (diff)
downloadhomebrew-d989927d3fa5debf8b6633ad58b3b824a47eba03.tar.bz2
Drop quotes from heredoc marker
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/gcc.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/gcc.rb b/Library/Formula/gcc.rb
index 544a380dc..644ace258 100644
--- a/Library/Formula/gcc.rb
+++ b/Library/Formula/gcc.rb
@@ -203,7 +203,7 @@ class Gcc < Formula
system "#{bin}/gcc-#{version_suffix}", "-o", "hello-c", "hello-c.c"
assert_equal "Hello, world!\n", `./hello-c`
- (testpath/"hello-cc.cc").write <<-'EOS'.undent
+ (testpath/"hello-cc.cc").write <<-EOS.undent
#include <iostream>
int main()
{