From 61d652eb7b0d8330e6be65534eee38e66782b24e Mon Sep 17 00:00:00 2001 From: Ankit Charolia Date: Thu, 24 Aug 2023 11:35:43 +0200 Subject: [PATCH] docs: update README.md --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa41210..a73ced0 100644 --- a/README.md +++ b/README.md @@ -9,13 +9,22 @@ goenv is a command-line tool to manage multiple versions of Golang on your system. ## Installation -**Download**: https://github.com/ankitcharolia/goenv/releases +**Releases**: https://github.com/ankitcharolia/goenv/releases + +**LINUX** ```shell 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 ``` +**MAC** +```shell +wget -O - https://github.com/ankitcharolia/goenv/releases/latest/download/goenv-darwin-amd64.tar.gz | tar -xz -C ~/.go +export PATH=$HOME/.go:$PATH >> ~/.zshrc +source ~/.zshrc +``` + ## Usage goenv provides several commands to manage Golang versions on your system. ```shell