Skip to content

Commit

Permalink
add macos mojave bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
geovie committed Aug 27, 2018
1 parent c4cd18a commit e930579
Show file tree
Hide file tree
Showing 2 changed files with 848 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/mac/bindings.js
Expand Up @@ -7,6 +7,8 @@ if (osRelease < 13 ) {
module.exports = require('./mavericks');
} else if (osRelease < 17) {
module.exports = require('./yosemite');
} else {
} else if (osRelease < 18) {
module.exports = require('./highsierra');
} else {
module.exports = require('./mojave');
}

0 comments on commit e930579

Please sign in to comment.