Skip to content

Commit

Permalink
docs: Update Invoke-WebRequest to Start-BitsTransfer (#373)
Browse files Browse the repository at this point in the history
  • Loading branch information
tim bangma authored Jun 10, 2020
1 parent e6bd802 commit f47d3f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit f47d3f4

Please sign in to comment.