Updating server fetch scripts to point to the correct version.

#rb luke.bermingham, william.belcher
#jira UE-191638

[CL 26730810 by matthew cotton in ue5-main branch]
This commit is contained in:
matthew cotton
2023-07-31 23:20:27 -04:00
parent 649f23a41b
commit cf64b112da
2 changed files with 12 additions and 3 deletions

View File

@@ -80,11 +80,15 @@ if DEFINED UEVersion (
SET PSInfraTagOrBranch=UE5.2
SET IsTag=0
)
if "%UEVersion%"=="5.3" (
SET PSInfraTagOrBranch=UE5.3
SET IsTag=0
)
)
@Rem If no arguments select a specific version, fetch the appropriate default
if NOT DEFINED PSInfraTagOrBranch (
SET PSInfraTagOrBranch=UE5.2
SET PSInfraTagOrBranch=UE5.3
SET IsTag=0
)
echo Tag or branch: !PSInfraTagOrBranch!

View File

@@ -26,7 +26,7 @@ print_help() {
# Set all default variables (e.g. # Name and version of ps-infra that we are downloading)
PSInfraOrg=EpicGames
PSInfraRepo=PixelStreamingInfrastructure
PSInfraTagOrBranch=UE5.2
PSInfraTagOrBranch=UE5.3
RefType=heads
IsTag=0
ReleaseUrlBase=https://github.com/EpicGames/PixelStreamingInfrastructure/releases/download
@@ -76,12 +76,17 @@ then
PSInfraTagOrBranch=UE5.2
IsTag=0
fi
if [ "$UEVersion" = "5.3" ]
then
PSInfraTagOrBranch=UE5.3
IsTag=0
fi
fi
# If no arguments select a specific version, fetch the appropriate default
if [ -z "$PSInfraTagOrBranch" ]
then
PSInfraTagOrBranch=UE5.2
PSInfraTagOrBranch=UE5.3
IsTag=0
fi
echo "Tag or branch: $PSInfraTagOrBranch"