diff options
author | Matt Selsky <selsky@columbia.edu> | 2012-07-30 22:52:38 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-07-30 22:52:38 +0200 |
commit | 2cab4974d0ee9c1958769c76f7437b848fef332a (patch) | |
tree | e14e2d39ec6f0a52ad3e1864aebcc6a931e0c21a | |
parent | f6d6091eadb373ed11ed67ddf30821698c2cec9f (diff) | |
download | bugzilla-2cab4974d0ee9c1958769c76f7437b848fef332a.tar.gz bugzilla-2cab4974d0ee9c1958769c76f7437b848fef332a.tar.xz |
Bug 778226 - Add Mac OS 10.8 Mountain Lion detection
r=timeless, a=LpSolit
-rwxr-xr-x | enter_bug.cgi | 1 |
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";}; |