aboutsummaryrefslogtreecommitdiff
path: root/bin/coveralls.js
blob: 698f1777c2965af532d7aa961e6767dce4ffef0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env node
var handleInput = require('../lib/handleInput');

process.stdin.resume();
process.stdin.setEncoding('utf8');

var input = '';

process.stdin.on('data', function(chunk) {
    input += chunk;
});

process.stdin.on('end', function() {
    handleInput(input);
});