diff --git a/src/util/system.js b/src/util/system.js index 23f3927..ef41c27 100644 --- a/src/util/system.js +++ b/src/util/system.js @@ -1,3 +1,4 @@ +/* jshint node:true */ var fs = require('fs'); var cp = require('child_process'); var glob = require('glob'); @@ -30,7 +31,6 @@ exports.fetchRemoteJSON = function(fileUrl) { return new Promise(function(resolve, reject) { request(fileUrl, { followRedirect: true, json: true }, function (err, res, body) { if(err) return reject(err); - console.log(body); return resolve(body); }); });