remove bad console.log

This commit is contained in:
Joao Moreno 2017-03-20 11:42:34 +01:00
parent 143db0163e
commit 6b274dce9b

View file

@ -39,7 +39,6 @@ function readManifestFromPackage(packagePath: string): Promise<Manifest> {
stream.once('error', e);
stream.once('end', () => {
try {
console.log(Buffer.concat(buffers).toString('utf8'));
c(JSON.parse(Buffer.concat(buffers).toString('utf8')));
} catch (err) {
e(err);