1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

Download from Releases, not master

Nikita Prokopov 2021-08-18 16:01:32 +02:00
parent 7e5384b099
commit 33abc28f93

@ -57,16 +57,11 @@ else
echo "Found fonts dir $fonts_dir"
fi
for type in Bold Light Medium Regular Retina SemiBold; do
file_path="${HOME}/.local/share/fonts/FiraCode-${type}.ttf"
file_url="https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-${type}.ttf?raw=true"
if [ ! -e "${file_path}" ]; then
echo "wget -O $file_path $file_url"
wget -O "${file_path}" "${file_url}"
else
echo "Found existing file $file_path"
fi;
done
version=5.2
zip=$Fira_Code_v${version}.zip
curl --fail --location --show-error https://github.com/tonsky/FiraCode/releases/download/${version}/${zip} --output ${zip}
unzip -o -q -d ${fonts_dir} ${zip}
rm ${zip}
echo "fc-cache -f"
fc-cache -f