From f9579cbc0c4cbca9145d03a09aa973d783f60cd2 Mon Sep 17 00:00:00 2001 From: Jonas Cabral <5769555+Truleu@users.noreply.github.com> Date: Fri, 30 Jun 2023 20:25:57 -0300 Subject: [PATCH] Update linux-scripted-manual.md - fix setting up environment variable path (#35730) --- docs/core/install/linux-scripted-manual.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/core/install/linux-scripted-manual.md b/docs/core/install/linux-scripted-manual.md index abf4276adbc21..fd5f1e4dc54ad 100644 --- a/docs/core/install/linux-scripted-manual.md +++ b/docs/core/install/linux-scripted-manual.md @@ -168,7 +168,7 @@ Set the following two environment variables in your shell profile: This variable should include both the `DOTNET_ROOT` folder and the user's _.dotnet/tools_ folder: ```bash - export PATH=$PATH:$HOME/.dotnet:$HOME/.dotnet/tools + export PATH=$PATH:$DOTNET_ROOT:$DOTNET_ROOT/tools ``` ## Next steps