Skip to content

Commit f5deb4b

Browse files
committed
fix(plugin): unify the usage of plugin name
1 parent 0537ee2 commit f5deb4b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

index.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
const path = require("path")
55
const fse = require("fs-extra")
6-
const pkg = require("./package.json")
76

87
module.exports = {
98
website: {
@@ -24,7 +23,7 @@ module.exports = {
2423
// copy contents for private repository
2524
if (isPrivateRepo) {
2625
const source = this.config.get("root", "./")
27-
const target = path.join("./_book/gitbook/", pkg.name, "contents", source)
26+
const target = path.join("./_book/gitbook/gitbook-plugin-github-issue-feedback/contents", source)
2827
fse.copy(source, target)
2928
}
3029
}

0 commit comments

Comments
 (0)