Fix git clone command paths in README

The ~ character is not expanded in double quotes (or simple quotes).
This closes #3.
This commit is contained in:
Hugo Locurcio
2018-12-21 09:59:21 +01:00
parent 0a4c62fa87
commit 2c217f2e55

View File

@@ -54,10 +54,10 @@ path (if the destination folder does not exist) using the following command:
```bash
# On Linux
git clone https://github.com/Calinou/godot-syntax-themes.git "~/.config/godot/text_editor_themes"
git clone https://github.com/Calinou/godot-syntax-themes.git ~/.config/godot/text_editor_themes
# On macOS
git clone https://github.com/Calinou/godot-syntax-themes.git "~/Library/Application Support/Godot/text_editor_themes"
git clone https://github.com/Calinou/godot-syntax-themes.git ~"/Library/Application Support/Godot/text_editor_themes"
# On Windows
git clone https://github.com/Calinou/godot-syntax-themes.git "%APPDATA%\Godot\text_editor_themes"