Skip to content

Commit

Permalink
fix ftp socket issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Contra committed Sep 27, 2016
1 parent de9d6e6 commit 401c541
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ function processObject(context, object, cb) {
fetchObjectFiles(context, object, function (err, filePaths) {
if (err) return cb(err);
debug(_chalk2.default.bold('Processing ' + filePaths.length + ' boundary ' + (0, _plural2.default)('file', filePaths.length) + ' for ' + object));
_async2.default.forEach(filePaths, _async2.default.ensureAsync(processFilePath.bind(null, context)), cb);
_async2.default.forEachSeries(filePaths, _async2.default.ensureAsync(processFilePath.bind(null, context)), cb);
});
}

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "census-boundaries",
"version": "1.1.0",
"version": "1.1.1",
"description": "Downloads and converts US Census TIGER data representing all boundaries in the United States",
"main": "dist/index.js",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ function processObject(context, object, cb) {
fetchObjectFiles(context, object, (err, filePaths) => {
if (err) return cb(err)
debug(chalk.bold(`Processing ${filePaths.length} boundary ${plural('file', filePaths.length)} for ${object}`))
async.forEach(filePaths, async.ensureAsync(processFilePath.bind(null, context)), cb)
async.forEachSeries(filePaths, async.ensureAsync(processFilePath.bind(null, context)), cb)
})
}

Expand Down

0 comments on commit 401c541

Please sign in to comment.