Revert eb90b2892a
Some checks failed
Builds / XTchain (full, linux) (push) Has started running
Builds / XTchain (full, windows) (push) Has started running
Builds / XTchain (minimal, linux) (push) Has been cancelled
Builds / XTchain (minimal, windows) (push) Has been cancelled

This commit is contained in:
Aiken Harris 2025-07-09 13:51:57 +02:00 committed by CodingWorkshop Signing Team
parent dc7ad21703
commit 6177658452
Signed by: CodingWorkshop Signing Team
GPG Key ID: 6DC88369C82795D2

View File

@ -375,7 +375,6 @@ xtchain_build()
# This function generates XTCHAIN version file and produces tarball archive
xtchain_tarball()
{
local BUILD="full"
local EXTENSION=""
local LIBDIR=""
@ -418,10 +417,7 @@ xtchain_tarball()
# Build tarball
echo ">>> Creating toolchain archive ..."
if [ ${BUILD_MINIMAL} -eq 1 ]; then
BUILD="min"
fi
tar -I 'zstd -19' -cpf xtchain-${XTCVER}-${TARGET_SYSTEM}-${BUILD}.tar.zst -C ${BINDIR} .
tar -I 'zstd -19' -cpf xtchain-${XTCVER}-${TARGET_SYSTEM}.tar.zst -C ${BINDIR} .
}