Fix usage of sidebars.json for versioning

This commit is contained in:
Frank Li 2017-08-08 13:38:37 -07:00
parent a56812cda3
commit 8c70286ad0
2 changed files with 3 additions and 3 deletions

View file

@ -92,7 +92,7 @@ files.forEach(file => {
// copy sidebar if necessary
if (versionFallback.diffLatestSidebar()) {
mkdirp(CWD + "/versioned_sidebars");
const sidebar = JSON.parse(fs.readFileSync(CWD + "/sidebar.json", "utf8"));
const sidebar = JSON.parse(fs.readFileSync(CWD + "/sidebars.json", "utf8"));
const versioned = {};
Object.keys(sidebar).forEach(sb => {
@ -111,7 +111,7 @@ if (versionFallback.diffLatestSidebar()) {
});
fs.writeFileSync(
CWD + "/versioned_sidebars/version-" + version + "-sidebar.json",
CWD + "/versioned_sidebars/version-" + version + "-sidebars.json",
JSON.stringify(versioned, null, 2),
"utf8"
);

View file

@ -76,7 +76,7 @@ function execute() {
files = glob.sync(CWD + "/versioned_sidebars/*");
files.forEach(file => {
if (!file.endsWith("-sidebar.json")) {
if (!file.endsWith("-sidebars.json")) {
return;
}
sidebarContent = JSON.parse(fs.readFileSync(file, "utf8"));