From 51bd9a620754d332f6012504e63ffe41ac6d2c1b Mon Sep 17 00:00:00 2001 From: Rahul Bhandari Date: Wed, 8 Sep 2021 11:31:35 -0700 Subject: [PATCH] Update install-linux.md --- release-notes/3.1/install-linux.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/release-notes/3.1/install-linux.md b/release-notes/3.1/install-linux.md index fa113a13..391414c6 100644 --- a/release-notes/3.1/install-linux.md +++ b/release-notes/3.1/install-linux.md @@ -48,7 +48,7 @@ You can install .NET with a binary archive. This option is required if you want The following workflow demonstrates downloading, unpacking, configuring, and running the .NET SDK from the command line. You may choose to do some of these tasks via the browser and functionality provided by your operating system. ```bash -~# curl -o dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/e6ae53a9-8567-4f44-b6ce-684d4f4a0b27/e0c29635c1c2ae9424390a41fecc95f1/dotnet-sdk-3.1.410-linux-x64.tar.gz +~# curl -Lo dotnet.tar.gz https://download.visualstudio.microsoft.com/download/pr/e6ae53a9-8567-4f44-b6ce-684d4f4a0b27/e0c29635c1c2ae9424390a41fecc95f1/dotnet-sdk-3.1.410-linux-x64.tar.gz ~# mkdir dotnet ~# tar -C dotnet -xf dotnet.tar.gz ~# rm dotnet.tar.gz