diff --git a/docs-utils/troubleshooting-structure-adjustment.js b/docs-utils/troubleshooting-structure-adjustment.js index cc9755af8..806b2af58 100644 --- a/docs-utils/troubleshooting-structure-adjustment.js +++ b/docs-utils/troubleshooting-structure-adjustment.js @@ -38,8 +38,8 @@ function moveAllTags(folderPath) { async function adjustTroubleshootingContent() { console.log('Adjusting troubleshooting content') for (locale of locales) { - const oldPath = path.resolve(`../docs/${locale}/tutorials/troubleshooting`) - const newPath = path.resolve(`../docs/${locale}/troubleshooting`) + const oldPath = path.resolve(`./docs/${locale}/tutorials/troubleshooting`) + const newPath = path.resolve(`./docs/${locale}/troubleshooting`) fs.renameSync(oldPath, newPath) moveAllTags(newPath) }