mirror of
https://github.com/webui-dev/webui
synced 2025-03-28 21:13:17 +00:00
rename output to tar.gz
This commit is contained in:
parent
c16647fc6e
commit
c57a19f204
@ -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 "";
|
||||
|
@ -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 "";
|
||||
|
@ -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.
|
||||
|
Loading…
x
Reference in New Issue
Block a user