From aaf3ff4e4f9863c8c7eebb9018c864841540e338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Viktor=20Sz=C3=A9pe?= Date: Mon, 24 Apr 2023 22:01:18 +0200 Subject: [PATCH] fix(action) Make wget progress indicator much smaller(#714) --- action/entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action/entrypoint.sh b/action/entrypoint.sh index d7c105e..24b7726 100755 --- a/action/entrypoint.sh +++ b/action/entrypoint.sh @@ -32,7 +32,7 @@ fi if [[ -z $(which ${CMD_NAME} 2>/dev/null) ]]; then VERSION=1.14.8 log "Downloading 'typos' v${VERSION}" - wget https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz + wget --progress=dot:mega "https://github.com/crate-ci/typos/releases/download/v${VERSION}/typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz" sudo tar -xzvf typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz -C /usr/local/bin ./typos rm typos-v${VERSION}-x86_64-unknown-linux-musl.tar.gz fi