(setup) Add progress bar to downloads for better feedback

This commit is contained in:
Viktor Lofgren 2024-11-07 13:30:52 +01:00
parent 9351593495
commit 80e482b155

View File

@ -31,7 +31,7 @@ function download_model {
if [ ! -f $model ]; then if [ ! -f $model ]; then
echo "** $model absent, downloading $url" echo "** $model absent, downloading $url"
curl -s -o $model.tmp $url curl -L --progress-bar -o $model.tmp $url
mv $model.tmp $model mv $model.tmp $model
fi fi
} }