(setup) use curl instead of wget for setup.sh

This commit is contained in:
Viktor Lofgren 2023-10-02 16:38:23 +02:00
parent 13ee31770a
commit 23be648456

View File

@ -12,7 +12,7 @@ function download_model {
if [ ! -f $model ]; then
echo "** Downloading $url"
wget -O $model $url
curl -s -o $model $url
fi
}