From 541d15eeeb9ce859483912331f78d97975ec83b0 Mon Sep 17 00:00:00 2001 From: niegrzybkowski Date: Fri, 18 Jul 2025 14:10:42 +0200 Subject: [PATCH] Change wget to be less verbose with its progress --- unix-like.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/unix-like.sh b/unix-like.sh index ed197c5..f284b25 100755 --- a/unix-like.sh +++ b/unix-like.sh @@ -15,6 +15,6 @@ if [ $arch = "aarch64" ]; then arch="arm64" fi mkdir "$RUNNER_TOOL_CACHE/jelly-cli" -wget -O "$RUNNER_TOOL_CACHE/jelly-cli/jelly-cli" "https://github.com/Jelly-RDF/cli/releases/download/$version/jelly-cli-$osname-$arch" +wget --progress=dot:mega -O "$RUNNER_TOOL_CACHE/jelly-cli/jelly-cli" "https://github.com/Jelly-RDF/cli/releases/download/$version/jelly-cli-$osname-$arch" chmod +x "$RUNNER_TOOL_CACHE/jelly-cli/jelly-cli" -echo "$RUNNER_TOOL_CACHE/jelly-cli" >> $GITHUB_PATH \ No newline at end of file +echo "$RUNNER_TOOL_CACHE/jelly-cli" >> $GITHUB_PATH