diff options
| author | Carlos D'Agostino | 2016-04-04 18:14:03 +0200 | 
|---|---|---|
| committer | Mike McQuaid | 2016-04-04 17:14:03 +0100 | 
| commit | fa3c55aa650e815ce548e1276845171def2847f4 (patch) | |
| tree | 6b4c395a05a9168483927bfe03e7afc25b5b1f4d /Library/Homebrew/utils/analytics.rb | |
| parent | 342ed4c830e349efee4cf4719d44eae96112cd47 (diff) | |
| download | brew-fa3c55aa650e815ce548e1276845171def2847f4.tar.bz2 | |
utils/analytics: fix usage of undefined variable.
Diffstat (limited to 'Library/Homebrew/utils/analytics.rb')
| -rw-r--r-- | Library/Homebrew/utils/analytics.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/utils/analytics.rb b/Library/Homebrew/utils/analytics.rb index cdf2c4eb5..9995a174f 100644 --- a/Library/Homebrew/utils/analytics.rb +++ b/Library/Homebrew/utils/analytics.rb @@ -39,7 +39,7 @@ end  def report_analytics_exception(exception, options={})    if exception.is_a? BuildError -    report_analytics_event("BuildError", e.formula.full_name) +    report_analytics_event("BuildError", exception.formula.full_name)    end    fatal = options.fetch(:fatal, true) ? "1" : "0"  | 
