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

Quote variables

Adrien Smith 2018-11-17 16:26:59 -07:00
parent 2b7b50e96b
commit 3dbe30fed3

@ -34,9 +34,9 @@ With most desktop-oriented distributions, double-clicking each font file in the
#!/usr/bin/env bash
fonts_dir="${HOME}/.local/share/fonts"
if [ ! -d ${fonts_dir} ]; then
if [ ! -d "${fonts_dir}" ]; then
echo "mkdir -p $fonts_dir"
mkdir -p ${fonts_dir}
mkdir -p "${fonts_dir}"
else
echo "Found fonts dir $fonts_dir"
fi
@ -44,9 +44,9 @@ fi
for type in Bold Light Medium Regular Retina; 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
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;