fix #684: normalise target paths on windows

This commit is contained in:
dragonwocky 2022-03-10 21:30:46 +11:00
parent 4f222a3b73
commit 442d6d3427
Signed by: dragonwocky
GPG Key ID: 86DFC3C312A56010

View File

@ -68,7 +68,7 @@ export default async function (
.map((file) => file.path)
.filter((file) => file.endsWith('.js') && !file.includes('node_modules'));
for (const file of notionFiles) {
const target = file.slice(status.executable.length + 1, -3),
const target = file.slice(status.executable.length + 1, -3).replace(/\\/g, '/'),
replacer = path.resolve(`${__dirname(import.meta)}/replacers/${target}.mjs`);
if (fs.existsSync(replacer)) {
await (await import(`./replacers/${target}.mjs`)).default(file);