diff options
author | Samy Pesse <samypesse@gmail.com> | 2016-04-27 22:18:33 +0200 |
---|---|---|
committer | Samy Pesse <samypesse@gmail.com> | 2016-04-27 22:18:33 +0200 |
commit | 9bb0a3fbd355b6dda2fe33e3a83884baa8f30917 (patch) | |
tree | 567c1f02e05704039c87e42e10d4d5c9fb0ed9bf /lib/utils/fs.js | |
parent | 9a1a6f2625612c18745957c4331be27dfdc2fb34 (diff) | |
download | gitbook-9bb0a3fbd355b6dda2fe33e3a83884baa8f30917.zip gitbook-9bb0a3fbd355b6dda2fe33e3a83884baa8f30917.tar.gz gitbook-9bb0a3fbd355b6dda2fe33e3a83884baa8f30917.tar.bz2 |
Add tests for svg inliner
Diffstat (limited to 'lib/utils/fs.js')
-rw-r--r-- | lib/utils/fs.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils/fs.js b/lib/utils/fs.js index 96a0e49..008dd40 100644 --- a/lib/utils/fs.js +++ b/lib/utils/fs.js @@ -109,7 +109,7 @@ function assertFile(filePath, generator) { .then(function(exists) { if (exists) return; - generator(); + return generator(); }); } |