Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
fscherwi committed Nov 7, 2018
1 parent 0f749de commit 1a3de8e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,3 @@ script:
after_script:
- ./node_modules/.bin/istanbul cover test.js
- cat ./coverage/lcov.info | node_modules/.bin/coveralls --verbose
matrix:
include:
- node_js: "0.12"
before_install: "npm install -g npm@latest"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install get-osx-version --save
Output your current Mac OS version!

```javascript
var MacOSVersion = require('get-osx-version').get();
var MacOSVersion = require('get-osx-version');

console.log('Mac OS version: ' + MacOSVersion);
```
2 changes: 1 addition & 1 deletion bin.js
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
#!/usr/bin/env node
console.log('\nMac OS version: %s\n', require('./main.js').get());
console.log('\nMac OS version: %s\n', require('./main.js'));

0 comments on commit 1a3de8e

Please sign in to comment.