From 4ee5ce4b527ba45a255c2159a7755852f48b2878 Mon Sep 17 00:00:00 2001 From: 6543 <6543@obermui.de> Date: Wed, 14 Sep 2022 09:08:41 +0800 Subject: [PATCH] Fix "go install" example (#505) because some wrong tagging was done in the past, `latest` will point to `1.3.3` witch is actually v0.1.x. so you have to specify the version Reviewed-on: https://gitea.com/gitea/tea/pulls/505 Reviewed-by: Norwin Reviewed-by: techknowlogick Co-authored-by: 6543 <6543@obermui.de> Co-committed-by: 6543 <6543@obermui.de> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f82d155..6c90e05 100644 --- a/README.md +++ b/README.md @@ -106,9 +106,9 @@ Make sure you have a current go version installed (1.13 or newer). ``` Note that GNU Make (gmake on OpenBSD) is required. -- For a quick installation without `git` & `make`: +- For a quick installation without `git` & `make`, set $version and exec: ```sh - go install code.gitea.io/tea@latest + go install code.gitea.io/tea@${version} ``` ## Contributing