Skip to content

Commit 2d25ebe

Browse files
committed
Force use of bsdtar (installed with Windows) instead of gnutar installed with Git bash
1 parent 4b937e8 commit 2d25ebe

File tree

1 file changed

+2
-2
lines changed
  • SignallingWebServer/platform_scripts/cmd

1 file changed

+2
-2
lines changed

SignallingWebServer/platform_scripts/cmd/common.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ if exist node\ (
122122
rem Download nodejs and follow redirects.
123123
curl -L -o ./node.zip "https://nodejs.org/dist/%NODE_VERSION%/%NODE_NAME%.zip"
124124

125-
tar -xf node.zip
125+
%SystemRoot%\System32\tar.exe -xf node.zip
126126
ren "%NODE_NAME%\" "node"
127127
del node.zip
128128
)
@@ -206,7 +206,7 @@ if exist coturn\ (
206206
curl -L -o ./turnserver.zip "https://github.com/EpicGamesExt/PixelStreamingInfrastructure/releases/download/v4.5.2-coturn-windows/turnserver.zip"
207207

208208
@Rem Unarchive the .zip to a directory called "turnserver"
209-
mkdir coturn & tar -xf turnserver.zip -C coturn
209+
mkdir coturn & %SystemRoot%\System32\tar.exe -xf turnserver.zip -C coturn
210210

211211
@Rem Delete the downloaded turnserver.zip
212212
del turnserver.zip

0 commit comments

Comments
 (0)