Skip to content

Commit

Permalink
Fix to obey --build-dir when copying files
Browse files Browse the repository at this point in the history
  • Loading branch information
derek committed May 1, 2013
1 parent dd997ee commit 484f024
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/module.js
Expand Up @@ -582,7 +582,7 @@ var buildCopy = function (mod, name, callback) {
mod.copy.forEach(function (value, key) {
mod.copy[key] = [
path.join(shifter.cwd(), value[0]),
path.join(shifter.cwd(), value[1])
path.join(mod.buildDir, name, value[1])
];
});

Expand Down

0 comments on commit 484f024

Please sign in to comment.