aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike McQuaid2015-01-13 11:02:01 +0000
committerMike McQuaid2015-01-13 11:02:01 +0000
commitd414839e1292c090bc15d300db1197c094e107b9 (patch)
tree379cacb3f50b40f85284b2713322bed0bf5caeb5 /Library/Formula
parent3768ec6f9213f8d58fae829f4e9af59c93bd7ae4 (diff)
downloadhomebrew-d414839e1292c090bc15d300db1197c094e107b9.tar.bz2
Revert "Drop quotes from heredoc marker"
This reverts commit d989927d3fa5debf8b6633ad58b3b824a47eba03.
Diffstat (limited to 'Library/Formula')
-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 644ace258..544a380dc 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()
{