Skip to content

Commit

Permalink
Check for new prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
Snaggly committed Nov 4, 2024
1 parent ced9430 commit f787534
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions src/backend/launcher.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ import { showDialogBoxModalAuto } from './dialog/dialog'
import { legendarySetup } from './storeManagers/legendary/setup'
import { gameManagerMap } from 'backend/storeManagers'
import * as VDF from '@node-steam/vdf'
import { readFileSync, writeFileSync } from 'fs'
import { readFileSync } from 'fs'
import { LegendaryCommand } from './storeManagers/legendary/commands'
import { commandToArgsArray } from './storeManagers/legendary/library'
import { searchForExecutableOnPath } from './utils/os/path'
Expand Down Expand Up @@ -803,7 +803,8 @@ export async function verifyWinePrefix(
return { res: { stdout: '', stderr: '' }, updated: false }
}

if (!existsSync(winePrefix) && !(await isUmuSupported(wineVersion.type))) {
let newPrefix = !existsSync(winePrefix)

Check failure on line 806 in src/backend/launcher.ts

View workflow job for this annotation

GitHub Actions / lint

'newPrefix' is never reassigned. Use 'const' instead
if (newPrefix && !(await isUmuSupported(wineVersion.type))) {
mkdirSync(winePrefix, { recursive: true })
}

Expand All @@ -826,16 +827,7 @@ export async function verifyWinePrefix(

return command
.then((result) => {
const currentWinePath = join(winePrefix, 'current_wine')
if (
!existsSync(currentWinePath) ||
readFileSync(currentWinePath, 'utf-8') != wineVersion.bin
) {
writeFileSync(currentWinePath, wineVersion.bin, 'utf-8')
return { res: result, updated: true }
} else {
return { res: result, updated: false }
}
return { res: result, updated: newPrefix }
})
.catch((error) => {
logError(['Unable to create Wineprefix: ', error], LogPrefix.Backend)
Expand Down

0 comments on commit f787534

Please sign in to comment.