From 7c79956385b96dde77fbd39e44fb3f6ee64b288d Mon Sep 17 00:00:00 2001 From: PedroAntunesCosta <47991446+PedroAntunesCosta@users.noreply.github.com> Date: Mon, 11 Nov 2024 15:04:00 -0300 Subject: [PATCH] Update troubleshooting-structure-adjustment.js --- docs-utils/troubleshooting-structure-adjustment.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-utils/troubleshooting-structure-adjustment.js b/docs-utils/troubleshooting-structure-adjustment.js index 7facbf8c6..cc9755af8 100644 --- a/docs-utils/troubleshooting-structure-adjustment.js +++ b/docs-utils/troubleshooting-structure-adjustment.js @@ -38,7 +38,7 @@ function moveAllTags(folderPath) { async function adjustTroubleshootingContent() { console.log('Adjusting troubleshooting content') for (locale of locales) { - const oldPath = path.resolve(`../${locale}/tutorials/troubleshooting`) + const oldPath = path.resolve(`../docs/${locale}/tutorials/troubleshooting`) const newPath = path.resolve(`../docs/${locale}/troubleshooting`) fs.renameSync(oldPath, newPath) moveAllTags(newPath)