UAT: For editor quick launch and packaging, only pass -iostore and -compressed when using -pak, and never pass -compressed to the cook commandlet (that feature has been removed).

#jira none
#rb carlmagnus.nordin
#rnx
#preflight 6273b3d45b05fb4f60112bbe

[CL 20056179 by PJ Kack in ue5-main branch]
This commit is contained in:
PJ Kack
2022-05-05 07:41:13 -04:00
parent b5d5894233
commit 5d0ce32acd
3 changed files with 27 additions and 33 deletions

View File

@@ -222,13 +222,6 @@ namespace AutomationScripts
CommandletParams += " -basedonreleaseversionroot=" + Params.BasedOnReleaseVersionBasePath;
}
// if we are not going to pak but we specified compressed then compress in the cooker ;)
// otherwise compress the pak files
if (!Params.Pak && !Params.SkipPak && Params.Compressed && !Params.ForceUncompressed)
{
CommandletParams += " -compressed";
}
if (!Params.NoClient)
{
var MapsList = Maps == null ? new List<string>() : Maps.ToList();