aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorJack Nagel2013-11-12 10:11:32 -0600
committerJack Nagel2013-11-12 10:12:41 -0600
commit8b7ddc1fed6af65ddbdfa9b646a1f7cfcf6019ed (patch)
tree736289743deae0d94fb3525e779a884a76979ad0 /Library/Homebrew/cmd
parentbe3e60fc95ff761b9688bf8c5daebdb7d06ecce8 (diff)
downloadbrew-8b7ddc1fed6af65ddbdfa9b646a1f7cfcf6019ed.tar.bz2
XQuartz 2.7.5 released
Closes Homebrew/homebrew#24173.
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/doctor.rb11
1 files changed, 2 insertions, 9 deletions
diff --git a/Library/Homebrew/cmd/doctor.rb b/Library/Homebrew/cmd/doctor.rb
index a7b159b69..569f44d73 100644
--- a/Library/Homebrew/cmd/doctor.rb
+++ b/Library/Homebrew/cmd/doctor.rb
@@ -1089,18 +1089,11 @@ end
return if installed_version >= latest_version
- case MacOS.version
- when "10.9" then <<-EOS.undent
- Your XQuartz (#{installed_version}) is outdated
- OS X Mavericks requires XQuartz #{latest_version}:
- http://xquartz.macosforge.org/trac/wiki/X112.7.5
- EOS
- else <<-EOS.undent
+ <<-EOS.undent
Your XQuartz (#{installed_version}) is outdated
Please install XQuartz #{latest_version}:
https://xquartz.macosforge.org
- EOS
- end
+ EOS
end
end # end class Checks