Skip to content

Commit

Permalink
Merge pull request #511 from EpicGamesExt/backport/UE5.5/pr-509
Browse files Browse the repository at this point in the history
[UE5.5] Merge pull request #509 from EpicGamesExt/RTCP-8168
  • Loading branch information
mcottontensor authored Feb 26, 2025
2 parents aa0b1f6 + 4324bfa commit 5cacd69
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions SignallingWebServer/platform_scripts/cmd/common.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ goto :eof
set SCRIPT_DIR=%~dp0
set NODE_VERSION=v18.17.0
set NPM="%SCRIPT_DIR%/node/npm"
set TAR="%SystemRoot%\System32\tar.exe"
set CONTINUE=1
GOTO :eof

Expand Down Expand Up @@ -122,7 +123,7 @@ if exist node\ (
rem Download nodejs and follow redirects.
curl -L -o ./node.zip "https://nodejs.org/dist/%NODE_VERSION%/%NODE_NAME%.zip"

tar -xf node.zip
%TAR% -xf node.zip
ren "%NODE_NAME%\" "node"
del node.zip
)
Expand Down Expand Up @@ -206,7 +207,7 @@ if exist coturn\ (
curl -L -o ./turnserver.zip "https://github.com/EpicGamesExt/PixelStreamingInfrastructure/releases/download/v4.5.2-coturn-windows/turnserver.zip"

@Rem Unarchive the .zip to a directory called "turnserver"
mkdir coturn & tar -xf turnserver.zip -C coturn
mkdir coturn & %TAR% -xf turnserver.zip -C coturn

@Rem Delete the downloaded turnserver.zip
del turnserver.zip
Expand Down

0 comments on commit 5cacd69

Please sign in to comment.