Skip to content

Commit

Permalink
Another tweak attempt
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 13, 2023
1 parent aa906ef commit 44ee171
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/udk-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,3 +71,4 @@ jobs:
path: |
tests/UDKTests/UDK-Lite/UDKGame/Logs/*.log
tests/UDKTests/UDK-Lite/UDKGame/Logs/*.dmp
tests/UDKTests/UDK-Lite/UDKGame/Logs/
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 @@ -261,7 +261,7 @@ async def run_udk_build(
if use_shell:
proc = await asyncio.create_subprocess_shell(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "make","-useunpublished","-UNATTENDED","LOG=Launch.log",'
f'-ArgumentList "make","-useunpublished","LOG=Launch.log",'
f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"',
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
Expand Down Expand Up @@ -324,7 +324,7 @@ async def run_udk_server(
if use_shell:
test_proc = await asyncio.create_subprocess_shell(
cmd=f'powershell.exe Start-Process -NoNewWindow -FilePath "{udk_exe}" '
f'-ArgumentList "server","{udk_args}","-UNATTENDED","LOG=Launch.log",'
f'-ArgumentList "server","{udk_args}","LOG=Launch.log",'
f'"-NOPAUSE","-FORCELOGFLUSH","-AUTO"',
stdout=asyncio.subprocess.PIPE,
stderr=asyncio.subprocess.STDOUT,
Expand Down

0 comments on commit 44ee171

Please sign in to comment.