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

add quotes in wget command

John N Underwood 2018-11-20 13:24:09 -05:00
parent 3dbe30fed3
commit 4d9e077ccd

@ -46,7 +46,7 @@ for type in Bold Light Medium Regular Retina; do
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}"
wget -O "${file_path}" "${file_url}"
else
echo "Found existing file $file_path"
fi;