From e63d766d4e64c26608a988efae23b82bd5894866 Mon Sep 17 00:00:00 2001
From: JP Etcheber <jetcheber@gmail.com>
Date: Sun, 13 Dec 2020 20:38:55 -0800
Subject: [PATCH] docs: use git commands to find the latest tag

---
 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 49ceb2c..f26df93 100644
--- a/README.md
+++ b/README.md
@@ -56,12 +56,12 @@ To install Rustlings. Same as on MacOS/Linux, you will have access to the `rustl
 
 ## Manually
 
-Basically: Clone the repository, checkout to the latest tag, run `cargo install`.
+Basically: Clone the repository, checkout to [the latest tag](https://github.com/rust-lang/rustlings/releases/latest), run `cargo install`.
 
 ```bash
 git clone https://github.com/rust-lang/rustlings
 cd rustlings
-git checkout tags/4.2.0 # or whatever the latest version is (find out at https://github.com/rust-lang/rustlings/releases/latest)
+git checkout tags/$(git tag | tail -1)
 cargo install --force --path .
 ```