We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d774a commit fa3a927Copy full SHA for fa3a927
HotPatcher/Source/HotPatcherCore/Private/CreatePatch/ReleaseProxy.cpp
@@ -101,8 +101,10 @@ namespace ReleaseWorker
101
{
102
AllConfigPlatformSet.Add(PlatformsPakListFile.TargetPlatform);
103
}
104
-
105
- AddProjectDirToTarget = AllConfigPlatformSet.Num() > 1 ? ETargetPlatform::AllPlatforms : AllConfigPlatformSet.Array()[0];
+ if(AllConfigPlatformSet.Num())
+ {
106
+ AddProjectDirToTarget = AllConfigPlatformSet.Num() > 1 ? ETargetPlatform::AllPlatforms : AllConfigPlatformSet.Array()[0];
107
+ }
108
109
UFlibHotPatcherCoreHelper::ImportProjectNotAssetDir(Context.GetSettingObject()->GetAddExternAssetsToPlatform(),AddProjectDirToTarget);
110
0 commit comments