File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
SignallingWebServer/platform_scripts/cmd Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ goto :eof
88set SCRIPT_DIR = %~dp0
99set NODE_VERSION = v18.17.0
1010set NPM = " %SCRIPT_DIR% /node/npm"
11+ set TAR = " %SystemRoot% \System32\tar.exe"
1112set CONTINUE = 1
1213GOTO :eof
1314
@@ -122,7 +123,7 @@ if exist node\ (
122123 rem Download nodejs and follow redirects.
123124 curl -L -o ./node.zip " https://nodejs.org/dist/%NODE_VERSION% /%NODE_NAME% .zip"
124125
125- %SystemRoot% \System32\tar.exe -xf node.zip
126+ %TAR% -xf node.zip
126127 ren " %NODE_NAME% \" " node"
127128 del node.zip
128129)
@@ -206,7 +207,7 @@ if exist coturn\ (
206207 curl -L -o ./turnserver.zip " https://github.com/EpicGamesExt/PixelStreamingInfrastructure/releases/download/v4.5.2-coturn-windows/turnserver.zip"
207208
208209 @ Rem Unarchive the .zip to a directory called "turnserver"
209- mkdir coturn & %SystemRoot% \System32\tar.exe -xf turnserver.zip -C coturn
210+ mkdir coturn & %TAR% -xf turnserver.zip -C coturn
210211
211212 @ Rem Delete the downloaded turnserver.zip
212213 del turnserver.zip
You can’t perform that action at this time.
0 commit comments