From 88535b09b7d5b74422cd7a5ddf82b9953c93598f Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Tue, 5 Jan 2016 16:07:53 +0100 Subject: [PATCH] exceptions: hotfix --- Library/Homebrew/exceptions.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/exceptions.rb b/Library/Homebrew/exceptions.rb index 7e6103a390..6f2fb849c1 100644 --- a/Library/Homebrew/exceptions.rb +++ b/Library/Homebrew/exceptions.rb @@ -266,7 +266,7 @@ class BuildError < RuntimeError end require "diagnostic" - unsupported_osx = Diagnostic::Checks.new.check_for_unsupported_osx + unsupported_osx = Homebrew::Diagnostic::Checks.new.check_for_unsupported_osx opoo unsupported_osx if unsupported_osx end end