You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fixing 'Unable to generate long package name for /Script/*' log spam when cooking.
#codereview Nick.Darnell, Daniel.Lamb [CL 2526991 by Robert Manuszewski in Main branch]
This commit is contained in:
committed by
Robert.Manuszewski@epicgames.com
parent
d5691d976d
commit
ba3ea28039
@@ -691,7 +691,8 @@ void UCookOnTheFlyServer::GetDependentPackages( const TSet<UPackage*>& RootPacka
|
||||
FString PackageDepdencyString = PackageDependency.ToString();
|
||||
|
||||
FText OutReason;
|
||||
if ( !FPackageName::IsValidLongPackageName(PackageDepdencyString, false, &OutReason) )
|
||||
const bool bIncludeReadOnlyRoots = true; // Dependency packages are often script packages (read-only)
|
||||
if (!FPackageName::IsValidLongPackageName(PackageDepdencyString, bIncludeReadOnlyRoots, &OutReason))
|
||||
{
|
||||
const FText FailMessage = FText::Format(LOCTEXT("UnableToGeneratePackageName", "Unable to generate long package name for {0}. {1}"),
|
||||
FText::FromString(PackageDepdencyString), OutReason);
|
||||
|
||||
Reference in New Issue
Block a user