build: suppress output for apt
All checks were successful
link / Link assets on Linux (push) Successful in 6m2s

This commit is contained in:
6arelyFuture 2024-06-10 19:00:53 +00:00
parent cf5b4b50b1
commit 926bb0033f

View File

@ -8,9 +8,10 @@ if [[ -z "$OAT_VERSION" ]]; then
fi fi
# Make sure we have cURL (and file for debugging) # Make sure we have cURL (and file for debugging)
echo "Downloading dependencies"
dpkg --add-architecture i386 dpkg --add-architecture i386
apt-get update apt-get update > /dev/null 2>&1
apt-get install -y curl file libstdc++-13-dev:i386 apt-get install -y curl file libstdc++-13-dev:i386 > /dev/null 2>&1
# Construct the download URL # Construct the download URL
DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz" DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz"