@@ -254,7 +254,7 @@ export async function install(
254
254
return { status : 'error' , error : 'Release meta not found' }
255
255
}
256
256
257
- logInfo ( `Installing ${ title } to ${ path } ...` , LogPrefix . HyperPlay )
257
+ logInfo ( `Installing ${ title } to ${ dirpath } ...` , LogPrefix . HyperPlay )
258
258
259
259
// download the zip file
260
260
try {
@@ -404,6 +404,7 @@ export async function uninstall({
404
404
405
405
// remove game folder from install path
406
406
const installPath = appInfo . install . install_path
407
+ logInfo ( `Removing folder in uninstall: ${ installPath } ` , LogPrefix . HyperPlay )
407
408
rmSync ( installPath , { recursive : true , force : true } )
408
409
409
410
// only remove the game from the store if the platform is web
@@ -425,12 +426,13 @@ export async function uninstall({
425
426
( value ) => value . app_name === appName
426
427
)
427
428
currentLibrary [ gameIndex ] . is_installed = false
429
+ currentLibrary [ gameIndex ] . install = { }
428
430
hpLibraryStore . set ( 'games' , currentLibrary )
429
431
430
432
if ( shouldRemovePrefix ) {
431
433
const { winePrefix } = await getSettings ( appName )
432
434
433
- logInfo ( `Removing prefix ${ winePrefix } ` , LogPrefix . Backend )
435
+ logInfo ( `Removing prefix ${ winePrefix } ` , LogPrefix . HyperPlay )
434
436
if ( existsSync ( winePrefix ) ) {
435
437
// remove prefix if exists
436
438
rmSync ( winePrefix , { recursive : true } )
@@ -483,22 +485,22 @@ export async function update(appName: string): Promise<InstallResult> {
483
485
if ( gameInfo . install . platform === undefined ) {
484
486
logError (
485
487
'Install platform was not found during game updated' ,
486
- LogPrefix . Backend
488
+ LogPrefix . HyperPlay
487
489
)
488
490
return { status : 'error' }
489
491
}
490
492
491
493
if ( gameInfo . install . install_path === undefined ) {
492
494
logError (
493
495
'Install path was not found during game updated' ,
494
- LogPrefix . Backend
496
+ LogPrefix . HyperPlay
495
497
)
496
498
return { status : 'error' }
497
499
}
498
500
499
501
await uninstall ( { appName } )
500
502
const installResult = await install ( appName , {
501
- path : gameInfo . install . install_path ,
503
+ path : path . dirname ( gameInfo . install . install_path ) ,
502
504
platformToInstall : gameInfo . install . platform
503
505
} )
504
506
return installResult
0 commit comments