You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- Catch2 built for LinuxArm64 - new option to run apps in containerized mode - builds docker image, setup and cleanup - StringOp BuildGraph element for string operations (replace, to lower etc) #jira UE-193565 #rb ue-qa-sdets [CL 27758925 by chris constantinescu in ue5-main branch]
5 lines
178 B
Bash
5 lines
178 B
Bash
#!/bin/bash
|
|
|
|
AppNameLowercase=$1
|
|
docker rm -f ${AppNameLowercase}-linuxarm64-container 2>/dev/null || exit 0
|
|
docker rmi ${AppNameLowercase}-linuxarm64-image 2>/dev/null || exit 0 |