From 60f1f0c03053ce6f61ea1c211a6349baf58a2d77 Mon Sep 17 00:00:00 2001 From: srgooglo Date: Wed, 29 Nov 2023 15:03:31 +0100 Subject: [PATCH] use double backslash --- manifests/lethal-company.manifest | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/manifests/lethal-company.manifest b/manifests/lethal-company.manifest index f3ea1ab..7abf9cf 100644 --- a/manifests/lethal-company.manifest +++ b/manifests/lethal-company.manifest @@ -59,9 +59,9 @@ module.exports = { const runwinBat = path.resolve(pack_dir, "runwin.bat") - await fs.writeFileSync(runwinBat, `"${pack_dir}\Lethal Company.exe"`, { encoding: 'utf8' }) + await fs.writeFileSync(runwinBat, `"${pack_dir}\\Lethal Company.exe"`, { encoding: 'utf8' }) return true }, - execute: `%install_path%\runwin.bat` + execute: `%install_path%\\runwin.bat` }