diff options
| author | Nick Merwin <[email protected]> | 2015-12-10 12:52:55 -0800 |
|---|---|---|
| committer | Nick Merwin <[email protected]> | 2015-12-10 12:52:55 -0800 |
| commit | d084add18e87fd1a292315de7c9eb171e8fd4b93 (patch) | |
| tree | c90578e6a9540b8af75a930dc25d3c07be4efee6 /lib/handleInput.js | |
| parent | 712e6e4bb4d8e1a60f646d954743a6808aa7f13e (diff) | |
| parent | d60635885d243abef2cbc5b2a0da7a27d752a14b (diff) | |
| download | node-coveralls-pr/96.tar.xz node-coveralls-pr/96.zip | |
merge conflictspr/96
Diffstat (limited to 'lib/handleInput.js')
| -rw-r--r-- | lib/handleInput.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/handleInput.js b/lib/handleInput.js index 5f88394..845bfad 100644 --- a/lib/handleInput.js +++ b/lib/handleInput.js @@ -1,9 +1,10 @@ var index = require('../index'); var logger = require('./logger')(); -function handleInput(input, cb) { +function handleInput(input, cb, userOptions) { logger.debug(input); - var options = index.getOptions(function(err, options){ + logger.debug('user options ' + userOptions); + index.getOptions(function(err, options){ if (err){ logger.error("error from getOptions"); @@ -33,7 +34,7 @@ function handleInput(input, cb) { cb(null); }); }); - }); + }, userOptions); } module.exports = handleInput; |
