Skip to content

Commit

Permalink
fix(extendDirs): support relative path
Browse files Browse the repository at this point in the history
  • Loading branch information
uiolee committed Apr 19, 2024
1 parent 880a3c3 commit 606e089
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/deployer.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ module.exports = function(args) {
const mapFn = function(dir) {
const opts = {};
const extendPath = pathFn.join(baseDir, dir);
const extendDist = pathFn.join(deployDir, dir);
const extendDist = pathFn.join(deployDir, pathFn.basename(dir));

if (typeof ignoreHidden === 'object') {
opts.ignoreHidden = ignoreHidden[dir];
Expand Down

0 comments on commit 606e089

Please sign in to comment.