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

master
Alex Hirsch 2017-05-07 10:55:05 +02:00
rodzic 5ce6ff7504
commit ada3b44306
1 zmienionych plików z 1 dodań i 1 usunięć

@ -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
```