cleanup: make linter happy

This commit is contained in:
AJ ONeal
2021-04-26 07:40:13 +00:00
parent 170a124b0e
commit a3a17a929c
+3 -3
View File
@@ -10,15 +10,15 @@ install() {
if [ -e "$HOME/Library/Fonts" ]; then
# OS X
mv "$my_nerdfont" ~/Library/Fonts/
my_fontdir="~/Library/Fonts/"
my_fontdir="Library/Fonts/"
else
# Linux
mkdir -p ~/.local/share/fonts
mv "$my_nerdfont" ~/.local/share/fonts/
my_fontdir="~/.local/share/fonts/"
my_fontdir=".local/share/fonts/"
fi
echo "Installed $my_nerdfont to $my_fontdir"
echo "Installed $my_nerdfont to ~/$my_fontdir"
}
install