diff --git a/bin/goldilocks.js b/bin/goldilocks.js index 51d77d2..97bf009 100755 --- a/bin/goldilocks.js +++ b/bin/goldilocks.js @@ -43,7 +43,7 @@ function createStorage(filename, filetype) { function read() { return fs.readFileAsync(filename).then(parse).catch(function (err) { if (err.code === 'ENOENT') { - return ''; + return {}; } return PromiseA.reject(err); });