1
1
mirror of https://github.com/tonsky/FiraCode.git synced 2024-07-04 16:06:26 +03:00

Add missing backslash, otherwise the URL would be treated as a single command

Alex Hirsch 2017-05-07 10:55:05 +02:00
parent 5ce6ff7504
commit ada3b44306

@ -6,7 +6,7 @@ With most desktop-oriented distributions, double-clicking the font file should b
3. ```shell
# In download.sh
for type in Bold Light Medium Regular Retina; do
wget -O ~/.local/share/fonts/FiraCode-${type}.ttf
wget -O ~/.local/share/fonts/FiraCode-${type}.ttf \
"https://github.com/tonsky/FiraCode/blob/master/distr/ttf/FiraCode-${type}.ttf?raw=true";
done
```