Skip to content

Commit

Permalink
Add -AUTO flag to UDK.exe
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 13, 2023
1 parent a64de10 commit d49ec6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/UDKTests/setup_udk_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ async def run_udk_build(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "make","-useunpublished","-silent","-UNATTENDED","LOG=Launch.log",'
f'"-VERBOSE","-WAITFORDEBUGSERVER","-NOPAUSE","-FORCELOGFLUSH","-DEBUG",'
f'"-INSTALLFW"',
f'"-INSTALLFW","-AUTO"',
)
else:
proc = await asyncio.create_subprocess_exec(
Expand Down Expand Up @@ -314,7 +314,7 @@ async def run_udk_server(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "server","{udk_args}","-silent","-UNATTENDED","LOG=Launch.log",'
f'"-VERBOSE","-WAITFORDEBUGSERVER","-NOPAUSE","-FORCELOGFLUSH","-DEBUG",'
f'"-INSTALLFW"',
f'"-INSTALLFW","-AUTO"',
)
else:
test_proc = await asyncio.create_subprocess_exec(
Expand Down

0 comments on commit d49ec6d

Please sign in to comment.