From 99ae8ad5f12fde15266a67336e349188393da0a6 Mon Sep 17 00:00:00 2001 From: Ivan Dol Date: Thu, 4 Dec 2025 12:19:20 +0300 Subject: [PATCH] Update getting started for go install --- docs/guide/getting-started.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/guide/getting-started.md b/docs/guide/getting-started.md index 778f05368..68a8ca52b 100644 --- a/docs/guide/getting-started.md +++ b/docs/guide/getting-started.md @@ -35,6 +35,11 @@ asdf can be installed in several different ways: 1. [Install Go](https://go.dev/doc/install) 2. Run `go install github.com/asdf-vm/asdf/cmd/asdf@v0.18.0` +3. Add the following to `~/.bash_profile`: +```shell +export ASDF_DATA_DIR="$HOME/go/bin" +export PATH="$ASDF_DATA_DIR:$PATH" +``` ::::