We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 077977c + ff1bbd2 commit 6ac4c01Copy full SHA for 6ac4c01
install.sh
@@ -15,11 +15,13 @@ else
15
fi
16
17
# Copy all fonts to user fonts directory
18
+echo "Copying fonts..."
19
eval $find_command | xargs -0 -I % cp "%" "$font_dir/"
20
21
# Reset font cache on Linux
-if [[ -n `which fc-cache` ]]; then
22
- fc-cache -f $font_dir
+if command -v fc-cache @>/dev/null ; then
23
+ echo "Resetting font cache, this may take a moment..."
24
+ fc-cache -f $font_dir
25
26
27
echo "All Powerline fonts installed to $font_dir"
0 commit comments