From 8777901cf013864d2acf5e3117dacbb6b68674c5 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Sun, 23 Jun 2013 16:43:32 -0700 Subject: [PATCH] Use unicode escape Prevents this character from being changed when resaving this file with TextMate (1) on Snow Leopard. Closes Homebrew/homebrew#20715. --- Library/Homebrew/formula_installer.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 2aec26befe..06b965e643 100644 --- a/Library/Homebrew/formula_installer.rb +++ b/Library/Homebrew/formula_installer.rb @@ -264,7 +264,7 @@ class FormulaInstaller ohai "Summary" if ARGV.verbose? or show_summary_heading unless ENV['HOMEBREW_NO_EMOJI'] - print "🍺 " if MacOS.version >= :lion + print "\xf0\x9f\x8d\xba " if MacOS.version >= :lion end print "#{f.prefix}: #{f.prefix.abv}" print ", built in #{pretty_duration build_time}" if build_time