aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-03-17 11:56:32 -0700
committerAdam Vandenberg2012-03-17 11:56:32 -0700
commitaa46c7638ffcdf2a7e557226451b8f277125b8b1 (patch)
treeb8eff7d36d846cb9b1fa85823fee777596d57c9d /Library
parentcb066e7dcb0f77dd59d90ea4325e8d480920ed58 (diff)
downloadhomebrew-aa46c7638ffcdf2a7e557226451b8f277125b8b1.tar.bz2
doctor: check OS version
We warn if you are not running the latest Leopard or Snow Leopard. (We do not currently check Lion or Mountain Lion versions.)
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cmd/doctor.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index 9d4d0abe1..9b9b15256 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -861,6 +861,26 @@ def check_for_unlinked_but_not_keg_only
end
end
+def check_os_version
+ if MACOS_FULL_VERSION =~ /^10\.6(\.|$)/
+ unless (MACOS_FULL_VERSION == "10.6.8")
+ return <<-EOS.undent
+ Please update Snow Leopard.
+ 10.6.8 is the supported version of Snow Leopard.
+ You are still running #{MACOS_FULL_VERSION}.
+ EOS
+ end
+ elsif MACOS_FULL_VERSION =~ /^10\.5(\.|$)/
+ unless (MACOS_FULL_VERSION == "10.5.8")
+ return <<-EOS.undent
+ Please update Leopard.
+ 10.5.8 is the supported version of Leopard.
+ You are still running #{MACOS_FULL_VERSION}.
+ EOS
+ end
+ end
+end
+
end # end class Checks
module Homebrew extend self