Skip to content

Commit

Permalink
Fix lint offenses
Browse files Browse the repository at this point in the history
  • Loading branch information
arielj committed Mar 1, 2025
1 parent 91d6408 commit d9491ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/backend/utils/uninstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,14 +55,14 @@ export const removePrefix = async (appName: string, runner: Runner) => {
rmSync(winePrefix, { recursive: true })
}

export const removeFixFile = (appName: string, runner: Runner) => {
const removeFixFile = (appName: string, runner: Runner) => {
const fixFilePath = join(fixesPath, `${appName}-${storeMap[runner]}.json`)
if (existsSync(fixFilePath)) {
rmSync(fixFilePath)
}
}

export const removeSettingsAndLogs = (appName: string) => {
const removeSettingsAndLogs = (appName: string) => {
const removeIfExists = (filename: string) => {
logInfo(`Removing ${filename}`, LogPrefix.Backend)
const gameSettingsFile = join(gamesConfigPath, filename)
Expand Down

0 comments on commit d9491ed

Please sign in to comment.