Skip to content

Commit

Permalink
Updating doctor for latest OS X version released
Browse files Browse the repository at this point in the history
  • Loading branch information
abmish committed Nov 25, 2014
1 parent 225d489 commit 451847c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/doctor/ios.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ IOSChecker.prototype.getMacOSXVersion = function (cb) {
} else if (stdout.match('10.9') !== null) {
this.osVersion = '10.9';
cb(null, "Mac OS X 10.9 is installed.");
} else if (stdout.match('10.10') !== null) {
} else if ((stdout.match('10.10') !== null) || (stdout.match('10.10.1') !== null)) {
this.osVersion = '10.10';
cb(null, "Mac OS X 10.10 is installed.");
} else {
Expand Down

0 comments on commit 451847c

Please sign in to comment.