Skip to content

Commit 92a9d5f

Browse files
committed
Fix incorrect path following file move
1 parent 71d2ec8 commit 92a9d5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

javascript/commands/utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export const createMain = (
2323
if (!fs.existsSync(path.join(outputDir, "/chapters"))) {
2424
fs.mkdirSync(path.join(outputDir, "/chapters"));
2525
}
26-
fse.copy(path.join(__dirname, "/../static"), outputDir, err => {
26+
fse.copy(path.join(__dirname, "../../static"), outputDir, err => {
2727
if (err) return console.error(err);
2828
});
2929
return;

0 commit comments

Comments
 (0)