this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix issue with setup-fonts.sh (#613)

authored by

TheBrokenRail and committed by
Andrew Hyatt
e00d95a6 b37de516

+5 -1
+5 -1
src/setup-fonts.sh
··· 6 6 root=/Volumes/SystemRoot 7 7 8 8 for file in $(find /etc/fonts/ -type f); do 9 + mkdir -p $(dirname .$file) 9 10 sed "s|/usr/|$root/usr/|" $file > .$file 10 11 done 11 12 12 13 for link in $(find /etc/fonts/ -type l); do 13 - [ -L .$link ] || ln -s $root$(realpath $link) .$link 14 + if [[ ! -L .$link ]]; then 15 + mkdir -p $(dirname .$link) 16 + ln -s $root$(realpath $link) .$link 17 + fi 14 18 done