Skip to content

Commit

Permalink
Fixed engine uploads.
Browse files Browse the repository at this point in the history
  • Loading branch information
vchelaru committed Mar 31, 2024
1 parent 9fe4648 commit 0b1f990
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ public UploadFilesToFrbServer(IResults results, UploadType uploadType, string us
public override void ExecuteStep()
{
Results.WriteMessage($"Uploading {uploadType}");
if(uploadType == UploadType.Entire)
if(uploadType == UploadType.EngineAndTemplatesOnly)
{
UploadGumFiles();
UploadFrbdkFiles();
UploadEngineFiles();
UploadTemplateFiles(_ftpFolder, Results);
}
else if(uploadType == UploadType.Entire)
{
Expand Down

0 comments on commit 0b1f990

Please sign in to comment.