Skip to content

Commit 8ea9183

Browse files
authored
Merge pull request #151 from ChaiTRex/patch-1
Fixes install_linux.sh in the case that ~/.local/share/fonts doesn't exist
2 parents 8847e6c + 0c3c027 commit 8ea9183

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

util/install_linux.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
#!/bin/bash
22

3+
# ensure that ~/.local/share/fonts exists
4+
mkdir -p ~/.local/share/fonts
5+
36
# remove all fonts from ~/.local/share/fonts that start with "Monaspace"
47
rm -rf ~/.local/share/fonts/Monaspace*
58

0 commit comments

Comments
 (0)