diff --git a/lib/fsapi.js b/lib/fsapi.js index d05cbd0..d96fa19 100644 --- a/lib/fsapi.js +++ b/lib/fsapi.js @@ -224,7 +224,7 @@ function copyfs(blogdir, files) { dirpaths[pathname] = true; - return Promise.resolve(); + return PromiseA.resolve(); }).then(function () { // TODO is it better to do this lazy-like or as a batch? // I figure as batch when there may be hundreds of files, @@ -285,7 +285,7 @@ function putfs(blogdir, files) { dirpaths[pathname] = true; - return Promise.resolve(); + return PromiseA.resolve(); }).then(function () { // TODO is it better to do this lazy-like or as a batch? // I figure as batch when there may be hundreds of files,