Skip to content

Commit

Permalink
Update troubleshooting-structure-adjustment.js
Browse files Browse the repository at this point in the history
  • Loading branch information
PedroAntunesCosta committed Nov 12, 2024
1 parent 27be331 commit 9daa8a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs-utils/troubleshooting-structure-adjustment.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ function moveAllTags(folderPath) {
async function adjustTroubleshootingContent() {
console.log('Adjusting troubleshooting content')
for (locale of locales) {
const oldPath = `../docs/${locale}/tutorials/troubleshooting`
const newPath = `../docs/${locale}/troubleshooting`
const oldPath = path.join(__dirname,`../docs/${locale}/tutorials/troubleshooting`)
const newPath = path.join(__dirname,`../docs/${locale}/troubleshooting`)
fs.renameSync(oldPath, newPath)
moveAllTags(newPath)
}
Expand Down

0 comments on commit 9daa8a8

Please sign in to comment.