Skip to content

Commit

Permalink
Remove * from output
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Chadburn committed Feb 25, 2014
1 parent a1cfb4e commit 9d14bc7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bin/s3get
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ var program = require('commander')
s3get = require('../lib/aws-parallel-get').s3get;

program
.version('0.2.0')
.version('0.2.1')
.option('-b, --bucket [name]', 'Bucket')
.option('-p, --prefix [path]', 'Prefix')
.option('--key [str]', 'AWS access key', process.env.AWS_KEY)
Expand All @@ -19,7 +19,7 @@ var s3 = new s3get({
});

s3.on('data', function (data) {
process.stdout.write("*" + data)
process.stdout.write(data)
})

s3.go();
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "s3-parallel-get",
"version": "0.2.0",
"version": "0.2.1",
"author": "Matt Chadburn <[email protected]>",
"description": "Get files from s3, in parallel",
"repository": {
Expand Down

0 comments on commit 9d14bc7

Please sign in to comment.