rename output to tar.gz

This commit is contained in:
Justin Chase 2023-06-19 15:12:58 +00:00
parent c16647fc6e
commit c57a19f204
3 changed files with 6 additions and 6 deletions

View File

@ -69,10 +69,10 @@ if [ "$ARG1" = "" ]; then
echo "Compressing the release folder..."
echo "";
TAR_OUT="webui-linux-x64-v$WEBUI_VERSION.zip"
TAR_OUT="webui-linux-x64-v$WEBUI_VERSION.tar.gz"
cd "Release"
sleep 2
tar -c -f $TAR_OUT Linux/*
tar -czf $TAR_OUT Linux/*
cd "$RootPath"
echo "";

View File

@ -56,10 +56,10 @@ if [ "$ARG1" = "" ]; then
echo "Compressing the release folder..."
echo "";
TAR_OUT="webui-macos-x64-v$WEBUI_VERSION.zip"
TAR_OUT="webui-macos-x64-v$WEBUI_VERSION.tar.gz"
cd "Release"
sleep 2
tar -c -f $TAR_OUT macOS/*
tar -czf $TAR_OUT macOS/*
cd "$RootPath"
echo "";

View File

@ -91,10 +91,10 @@ IF "%ARG1%"=="" (
echo.
echo Compressing the release folder...
set TAR_OUT=webui-windows-x64-v%WEBUI_VERSION%.zip
set TAR_OUT=webui-windows-x64-v%WEBUI_VERSION%.tar.gz
cd "Release"
timeout 2 > NUL
tar.exe -c -f %TAR_OUT% Windows\*
tar.exe -czf %TAR_OUT% Windows\*
cd "%RootPath%"
echo.