Skip to content

Commit

Permalink
Fixed copy task
Browse files Browse the repository at this point in the history
  • Loading branch information
davglass committed Aug 29, 2012
1 parent 38015c7 commit bc1b05e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/module.js
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ var buildCopy = function (mod, name, callback) {
}
fromS = fs.createReadStream(from);
toS = fs.createWriteStream(to);
util.pump(fromS, toS, callback);
util.pump(fromS, toS, copy);
}
}
});
Expand Down

0 comments on commit bc1b05e

Please sign in to comment.