Skip to content

Commit

Permalink
Use -INSTALLFW when running UDK.exe with shell
Browse files Browse the repository at this point in the history
  • Loading branch information
tuokri committed Nov 13, 2023
1 parent 2a911dd commit a64de10
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/UDKTests/setup_udk_build_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.

import argparse
import asyncio
import enum
Expand Down Expand Up @@ -261,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'"-ResX=0","-ResY=0"',
f'"-INSTALLFW"',
)
else:
proc = await asyncio.create_subprocess_exec(
Expand Down Expand Up @@ -313,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'"-ResX=0","-ResY=0"',
f'"-INSTALLFW"',
)
else:
test_proc = await asyncio.create_subprocess_exec(
Expand Down

0 comments on commit a64de10

Please sign in to comment.