diff options
| author | cainus <[email protected]> | 2013-03-28 00:47:49 -0700 |
|---|---|---|
| committer | cainus <[email protected]> | 2013-03-28 00:47:49 -0700 |
| commit | c04a6beffc37a0c8fa3a06e628d95f11366db915 (patch) | |
| tree | d64bed63932c01f4a3b663d98f5c63484fd569cb /bin/coveralls.js | |
| parent | 7e3b06ea7ab092ffb9fb75d94fefc5f31a6925b7 (diff) | |
| download | node-coveralls-c04a6beffc37a0c8fa3a06e628d95f11366db915.tar.xz node-coveralls-c04a6beffc37a0c8fa3a06e628d95f11366db915.zip | |
by default, use cwd() for path.
Diffstat (limited to 'bin/coveralls.js')
| -rw-r--r-- | bin/coveralls.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/coveralls.js b/bin/coveralls.js index 1558290..273f95e 100644 --- a/bin/coveralls.js +++ b/bin/coveralls.js @@ -17,7 +17,7 @@ process.stdin.on('end', function() { var inputToCoveralls = function(input){ console.log(input); - var libDir = process.argv[2] || 'lib'; + var libDir = process.argv[2] || ''; var postData = convertLcovToCoveralls(input, libDir); sendToCoveralls(postData, function(err, response, body){ |
