summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjbouganim-parallel <150748285+jbouganim-parallel@users.noreply.github.com>2023-11-13 17:30:38 -0800
committerGitHub <noreply@github.com>2023-11-13 17:30:38 -0800
commit0f629a47a564427fc7348eeb370f3a97040fdea5 (patch)
tree6aecbac95d50fad1f85599a7dbea5d9d071581f8
parentbc3808cf29323a244762b47bf7d3f391d353fdf1 (diff)
fix broken link in windows installation instructions
https://github.com/rust-lang/rustlings/issues/1759
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index fdaee28..1011c80 100644
--- a/README.md
+++ b/README.md
@@ -61,7 +61,7 @@ Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
Then, you can run:
```ps1
-Start-BitsTransfer -Source https://ps1.rustlings.cool -Destination $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1
+Start-BitsTransfer -Source https://raw.githubusercontent.com/rust-lang/rustlings/main/install.ps1 -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. Keep in mind that this works best in PowerShell, and any other terminals may give you errors.