From 1c073d9682d4cb0e0b437b03894ca211df8ddb06 Mon Sep 17 00:00:00 2001 From: 6arelyFuture Date: Mon, 10 Jun 2024 18:50:49 +0000 Subject: [PATCH] build: suppress output for apt --- .gitea/scripts/ci.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/scripts/ci.sh b/.gitea/scripts/ci.sh index b8e0b14..4fc8fcc 100755 --- a/.gitea/scripts/ci.sh +++ b/.gitea/scripts/ci.sh @@ -9,9 +9,10 @@ if [[ -z "$OAT_VERSION" ]]; then fi # Make sure we have cURL (and file for debugging) +echo "Downloading dependencies" dpkg --add-architecture i386 -apt-get update -apt-get install -y curl file libstdc++-13-dev:i386 +apt-get update > /dev/null 2>&1 +apt-get install -y curl file libstdc++-13-dev:i386 > /dev/null 2>&1 # Construct the download URL DOWNLOAD_URL="https://github.com/Laupetin/OpenAssetTools/releases/download/v${OAT_VERSION}/oat-linux.tar.gz"