From e8d319f3cad32fb7e61fa5c73e912e891263716a Mon Sep 17 00:00:00 2001 From: Larpon Date: Sun, 27 Aug 2023 13:51:22 +0200 Subject: [PATCH] docs: fix `git clone ...` entries (#545) (#552) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7e06c86c..10451194 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ it via `git` or by manual download. An example of installing the system provided version of SDL2 via `git`: ```bash -git clone https://github.com/vlang/sdl.git ~/.vmodules +git clone https://github.com/vlang/sdl.git ~/.vmodules/sdl v ~/.vmodules/sdl/setup.vsh ``` @@ -31,7 +31,7 @@ by providing the version manually: An example of installing SDL2 `v2.0.12` via `git`: ```bash -git clone https://github.com/vlang/sdl.git ~/.vmodules +git clone https://github.com/vlang/sdl.git ~/.vmodules/sdl cd ~/.vmodules/sdl git checkout 2.0.12 ```