Skip to content

Commit

Permalink
fix copying of files
Browse files Browse the repository at this point in the history
  • Loading branch information
nzakas committed Apr 1, 2022
1 parent 198b708 commit d072c34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile.js
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ target.gensite = function(prereleaseVersion) {
// 3. Copy docs folder to a temporary directory
echo("> Copying the docs folder (Step 3)");
docFiles.forEach(filePath => {
cp("-rf", `docs/src${filePath}*`, TEMP_DIR);
cp("-rf", `docs/src${filePath}*`, `${TEMP_DIR}/${filePath}`);
});

// special case (for now)
Expand Down

0 comments on commit d072c34

Please sign in to comment.