1 parent a737b79 commit 1945241Copy full SHA for 1945241
1 file changed
bin/cleaver
@@ -13,7 +13,10 @@ var Cleaver = require('../');
13
function createAndSave(files, options) {
14
files.forEach(function (file) {
15
fs.readFile(file, 'utf-8', function (err, contents) {
16
- if (err) throw err;
+ if (err) {
17
+ throw err;
18
+ }
19
+
20
var presentation = new Cleaver(contents, options, path.resolve(path.dirname(file)));
21
22
presentation.run()
0 commit comments