Skip to content

Commit c30592f

Browse files
authored
Fix sitemap generator writing to wrong path (#250)
1 parent 3da86b7 commit c30592f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/sitemap-generator.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ for (const url of additionalUrls) {
4040
}
4141

4242
async function main() {
43-
const buildDir = `${baseDir}dist/sign-translate/browser/`;
43+
const buildDir = `${baseDir}${path.sep}dist${path.sep}sign-translate${path.sep}browser${path.sep}`;
4444

4545
// writes sitemaps and index out to the destination you provide.
4646
await simpleSitemapAndIndex({

0 commit comments

Comments
 (0)