result path not in final cb

This commit is contained in:
Henry Oswald 2016-12-14 18:11:28 +00:00
parent 4bba56ed28
commit d41bf2e974

View file

@ -29,9 +29,9 @@ checkFileConvert = (callback)->
async.waterfall [
(cb)->
fs.copy("./tiny.pdf", imgPath, cb)
(cb)-> fileConverter.thumbnail "./tiny.pdf", cb
(cb)-> fileConverter.thumbnail imgPath, cb
(resultPath, cb)-> fs.unlink resultPath, cb
(resultPath, cb)-> fs.unlink imgPath, cb
(cb)-> fs.unlink imgPath, cb
], callback