From cce32b18d25aa9d63515f22a53ba0c34a567d493 Mon Sep 17 00:00:00 2001 From: Ankit Charolia Date: Wed, 9 Aug 2023 20:47:38 +0200 Subject: [PATCH] always download the latest version --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 90e762a..aa41210 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ goenv is a command-line tool to manage multiple versions of Golang on your syste ## Installation **Download**: https://github.com/ankitcharolia/goenv/releases ```shell -wget -O - https://github.com/ankitcharolia/goenv/releases/download//goenv-linux-amd64.tar.gz | tar -xz -C ~/.go +wget -O - https://github.com/ankitcharolia/goenv/releases/latest/download/goenv-linux-amd64.tar.gz | tar -xz -C ~/.go export PATH=$HOME/.go:$PATH >> ~/.bashrc source ~/.bashrc ```