1
0
mirror of https://github.com/ryanoasis/nerd-fonts.git synced 2024-11-19 16:39:20 +02:00

Fix font_dir on linux to be ~/.local/share/fonts as the previous was deprecated.

This commit is contained in:
Shai Efrati 2016-01-06 09:23:27 +02:00
parent 273a285953
commit 6799e03bed

View File

@ -10,7 +10,7 @@ if [[ $(uname) == 'Darwin' ]]; then
font_dir="$HOME/Library/Fonts"
else
# Linux
font_dir="$HOME/.fonts"
font_dir="$HOME/.local/share/fonts"
mkdir -p "$font_dir"
fi