Skip to content

Commit

Permalink
Merge pull request #100 from jedwards1211/patch-2
Browse files Browse the repository at this point in the history
fix path concatenation
  • Loading branch information
fkling committed Mar 17, 2016
2 parents 7d21580 + 1e2bc68 commit 8072843
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ function dirFiles (dir, callback, acc) {

acc.remaining += files.length;
files.forEach(file => {
let name = dir + file;
let name = path.join(dir, file);
fs.stat(name, (err, stats) => {
if (err) {
// probably a symlink issue
Expand Down

0 comments on commit 8072843

Please sign in to comment.