From 7c06208d92493ab0aceb8b87b3741acc941d4815 Mon Sep 17 00:00:00 2001 From: Eberhard Beilharz Date: Sat, 1 Jul 2023 01:19:06 +0200 Subject: [PATCH] Update linux-scripted-manual.md (#36051) Remove unnecessary `sudo`. --- 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 37b13623b51f5..abf4276adbc21 100644 --- a/docs/core/install/linux-scripted-manual.md +++ b/docs/core/install/linux-scripted-manual.md @@ -87,7 +87,7 @@ wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh Before running this script, you'll need to grant permission for this script to run as an executable: ```bash -sudo chmod +x ./dotnet-install.sh +chmod +x ./dotnet-install.sh ``` The script defaults to installing the latest [long term support (LTS)](https://dotnet.microsoft.com/platform/support/policy/dotnet-core) SDK version, which is .NET 6. To install the latest release, which may not be an (LTS) version, use the `--version latest` parameter.