Skip to content

Commit 97d213e

Browse files
committed
Fixed source dist path
1 parent 05cccd4 commit 97d213e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/default/static/build.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ module.exports = function(options, folders){
1919
var staticDistPromises = [];
2020
if(options.html && options.html.staticDist){
2121
options.html.staticDist.forEach(function(dist){
22-
staticDistPromises.push(copy(path.join(process.cwd(), dist), folders.dist));
22+
staticDistPromises.push(copy(path.join(__dirname, '../../../..', dist), folders.dist));
2323
});
2424
}
2525

0 commit comments

Comments
 (0)