fix(action) Make wget progress indicator much smaller(#714)

This commit is contained in:
Viktor Szépe 2023-04-24 22:01:18 +02:00 committed by GitHub
parent 9433f016bb
commit aaf3ff4e4f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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