diff --git a/src/main/events/library/create-steam-shortcut.ts b/src/main/events/library/create-steam-shortcut.ts index ec408447..faa69266 100644 --- a/src/main/events/library/create-steam-shortcut.ts +++ b/src/main/events/library/create-steam-shortcut.ts @@ -68,6 +68,7 @@ const copyAssetIfExists = async ( destinationPath: string ) => { if (sourcePath && fs.existsSync(sourcePath)) { + logger.info("Copying Steam asset", sourcePath, destinationPath); await fs.promises.cp(sourcePath, destinationPath); } }; @@ -143,8 +144,6 @@ const createSteamShortcut = async ( ), ]); - fs.mkdirSync(gridPath, { recursive: true }); - steamShortcuts.push(newShortcut); logger.info(newShortcut);