@@ -15,14 +15,13 @@ import {
15
15
qaToken ,
16
16
valistListingsApiUrl
17
17
} from 'backend/constants'
18
- import { getGameInfo , getSettings } from './games'
18
+ import { getGameInfo } from './games'
19
19
import { LogPrefix , logError , logInfo } from 'backend/logger/logger'
20
20
import { join } from 'path'
21
21
import { existsSync } from 'graceful-fs'
22
22
import { ProjectMetaInterface } from '@valist/sdk/dist/typesShared'
23
23
import getPartitionCookies from 'backend/utils/get_partition_cookies'
24
24
import { DEV_PORTAL_URL } from 'common/constants'
25
- import { runWineCommand } from 'backend/launcher'
26
25
27
26
export async function getHyperPlayStoreRelease (
28
27
appName : string
@@ -387,14 +386,14 @@ export async function getEpicListingUrl(projectId: string): Promise<string> {
387
386
}
388
387
389
388
export const runModPatcher = async ( appName : string ) => {
390
- // game_folder/client-patcher patch.exe -m patch/manifest.json
391
389
const installPath = getGameInfo ( appName ) ?. install . install_path
392
390
if ( ! installPath ) {
393
391
logError ( `Cannot find install path for ${ appName } ` , LogPrefix . HyperPlay )
394
392
return
395
393
}
396
394
397
- const patcher = join ( installPath , 'client-patcher.exe' )
395
+ const patcherBinary = isWindows ? 'client-patcher.exe' : 'client-patcher'
396
+ const patcher = join ( installPath , patcherBinary )
398
397
const manifest = join ( installPath , 'patch' , 'manifest.json' )
399
398
400
399
logInfo (
@@ -407,15 +406,14 @@ export const runModPatcher = async (appName: string) => {
407
406
}
408
407
409
408
try {
410
- if ( ! isWindows ) {
411
- const gameSettings = await getSettings ( appName )
412
- runWineCommand ( {
413
- gameSettings,
414
- commandParts : [ patcher , 'patch' , '-m' , manifest ] ,
415
- wait : true
416
- } )
417
- } else {
418
- await spawnAsync ( patcher , [ 'patch' , '-m' , manifest ] )
409
+ const { stderr, stdout } = await spawnAsync (
410
+ patcherBinary ,
411
+ [ 'patch' , '-m' , 'patch/manifest.json' ] ,
412
+ { cwd : installPath }
413
+ )
414
+ logInfo ( [ 'Patch Applied' , stdout ] , LogPrefix . HyperPlay )
415
+ if ( stderr ) {
416
+ logError ( stderr , LogPrefix . HyperPlay )
419
417
}
420
418
} catch ( error ) {
421
419
throw new Error ( `Error running patcher: ${ error } ` )
0 commit comments