Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jdan committed Sep 6, 2014
1 parent a737b79 commit 1945241
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/cleaver
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ var Cleaver = require('../');
function createAndSave(files, options) {
files.forEach(function (file) {
fs.readFile(file, 'utf-8', function (err, contents) {
if (err) throw err;
if (err) {
throw err;
}

var presentation = new Cleaver(contents, options, path.resolve(path.dirname(file)));

presentation.run()
Expand Down

0 comments on commit 1945241

Please sign in to comment.