Browse Source

Merge pull request #120 from robsonq/install_sh_fix

Fixed wrong fonts directory in install.sh
pull/152/head
Kim Silkebækken 8 years ago
parent
commit
077977c27c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      install.sh

+ 1
- 1
install.sh 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

Loading…
Cancel
Save