Skip to content

Commit

Permalink
Merge 0dbad60 into 26868f8
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Lidén committed Jan 31, 2019
2 parents 26868f8 + 0dbad60 commit 95ea92a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/migrate/sources/fs-migrations.js
Expand Up @@ -3,7 +3,7 @@ import path from 'path';
import Promise from 'bluebird';
import { sortBy, filter } from 'lodash';

const readDirAsync = Promise.promisify(fs.readdir, { context: fs });
const readDirAsync = (path) => Promise.promisify(fs.readdir, { context: fs })(path);

export const DEFAULT_LOAD_EXTENSIONS = Object.freeze([
'.co',
Expand Down

0 comments on commit 95ea92a

Please sign in to comment.