Skip to content

Commit

Permalink
fixup! fixup! feat(walk): sdk cell match and presets support
Browse files Browse the repository at this point in the history
  • Loading branch information
qfox committed Jul 1, 2018
1 parent ba0e881 commit 94b5c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/walk/lib/walkers/sdk.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ module.exports = (info, add, callback) => {
function deeperInDir(dir, deeperCb) {
eachDirItem(dir, (filepath, cb) => {
const relPath = path.relative(info.path, filepath);
const matchResult = match(relPath);
const matchResult = match(relPath.replace(/\\/g, '/'));

if (matchResult.cell) {
if (!matchResult.rest) {
Expand Down

0 comments on commit 94b5c64

Please sign in to comment.