Skip to content
Snippets Groups Projects
Commit 652e0982 authored by Jack Nagel's avatar Jack Nagel
Browse files

Add doctor check for OS X > 10.8

parent ef054a2d
No related branches found
No related tags found
No related merge requests found
......@@ -243,6 +243,14 @@ def check_for_osx_gcc_installer
end
end
def check_for_unsupported_osx
if MacOS.version > 10.8 then <<-EOS.undent
You are using Mac OS X #{MacOS.version}.
We do not yet provide support for this (unreleased) version.
EOS
end
end
def check_for_stray_developer_directory
# if the uninstaller script isn't there, it's a good guess neither are
# any troublesome leftover Xcode files
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment