summaryrefslogtreecommitdiffstats
path: root/enter_bug.cgi
diff options
context:
space:
mode:
authorMatt Selsky <selsky@columbia.edu>2012-07-30 22:52:38 +0200
committerDave Lawrence <dlawrence@mozilla.com>2012-07-30 22:52:38 +0200
commit2cab4974d0ee9c1958769c76f7437b848fef332a (patch)
treee14e2d39ec6f0a52ad3e1864aebcc6a931e0c21a /enter_bug.cgi
parentf6d6091eadb373ed11ed67ddf30821698c2cec9f (diff)
downloadbugzilla-2cab4974d0ee9c1958769c76f7437b848fef332a.tar.gz
bugzilla-2cab4974d0ee9c1958769c76f7437b848fef332a.tar.xz
Bug 778226 - Add Mac OS 10.8 Mountain Lion detection
r=timeless, a=LpSolit
Diffstat (limited to 'enter_bug.cgi')
-rwxr-xr-xenter_bug.cgi1
1 files changed, 1 insertions, 0 deletions
diff --git a/enter_bug.cgi b/enter_bug.cgi
index 59edc2e13..5b684a965 100755
--- a/enter_bug.cgi
+++ b/enter_bug.cgi
@@ -310,6 +310,7 @@ sub pickos {
/\(.*Windows.*NT.*\)/ && do {push @os, "Windows NT";};
};
/\(.*Mac OS X.*\)/ && do {
+ /\(.*Mac OS X (?:|Mach-O |\()10.8.*\)/ && do {push @os, "Mac OS X 10.8";};
/\(.*Mac OS X (?:|Mach-O |\()10.7.*\)/ && do {push @os, "Mac OS X 10.7";};
/\(.*Mac OS X (?:|Mach-O |\()10.6.*\)/ && do {push @os, "Mac OS X 10.6";};
/\(.*Mac OS X (?:|Mach-O |\()10.5.*\)/ && do {push @os, "Mac OS X 10.5";};