You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Skip android test installation batch files during gauntlet build discovery
[FYI] clayton.langford #ROBOMERGE-OWNER: ryan.vance #ROBOMERGE-AUTHOR: josh.engebretson #ROBOMERGE-SOURCE: CL 5228413 via CL 5228420 via CL 5229166 via CL 5233431 #ROBOMERGE-BOT: DEVVR (Main -> Dev-VR) [CL 5254365 by josh engebretson in Dev-VR branch]
This commit is contained in:
+9
-1
@@ -71,8 +71,16 @@ namespace Gauntlet
|
||||
|
||||
Match Info = Regex.Match(Fi.Name, RegEx, RegexOptions.IgnoreCase);
|
||||
|
||||
if (Info.Success == false)
|
||||
bool TestInstall = Fi.Name.EndsWith("_TEST.bat", StringComparison.OrdinalIgnoreCase);
|
||||
|
||||
// filter out non-matching or test installation batch files
|
||||
// test installation scripts are intended to be manually invoked
|
||||
if (Info.Success == false || TestInstall)
|
||||
{
|
||||
if (TestInstall)
|
||||
{
|
||||
Log.Verbose("Ignoring test installation batch file {0}", Fi.Name);
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user