From f47d3f422db69da93d7528ac472296d8962037ec Mon Sep 17 00:00:00 2001 From: tim bangma Date: Wed, 10 Jun 2020 04:51:03 -0400 Subject: [PATCH] docs: Update `Invoke-WebRequest` to `Start-BitsTransfer` (#373) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 0fd6cd7f..6724f05a 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ Set-ExecutionPolicy RemoteSigned Then, you can run: ```ps -Invoke-WebRequest https://git.io/rustlings-win | Select-Object -ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1 +Start-BitsTransfer -Source https://git.io/rustlings-win -Destination $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1 ``` To install Rustlings. Same as on MacOS/Linux, you will have access to the `rustlings` command after it.