diff options
| author | Adam Vandenberg | 2013-06-23 16:43:32 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2013-06-23 16:43:32 -0700 |
| commit | 8777901cf013864d2acf5e3117dacbb6b68674c5 (patch) | |
| tree | db4e54f45c4592014cfc14ef6f17285daaecbac1 /Library | |
| parent | ad320c96fd7675ada7daa77b4975417109c4abbc (diff) | |
| download | brew-8777901cf013864d2acf5e3117dacbb6b68674c5.tar.bz2 | |
Use unicode escape
Prevents this character from being changed when resaving this file
with TextMate (1) on Snow Leopard.
Closes Homebrew/homebrew#20715.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/formula_installer.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/formula_installer.rb b/Library/Homebrew/formula_installer.rb index 2aec26bef..06b965e64 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 |
