1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-06-15 00:04:58 +02:00

fix(installation): first PowerShell command

ExecutionPolicy to RemoteSigned command was fixed because the old command was getting denied access to change the Execution Policy property
This commit is contained in:
Ivan Nerazumov
2021-03-13 18:45:52 +07:00
committed by GitHub
parent ebdb66c7bf
commit aa9a943ddf

View File

@ -36,7 +36,7 @@ This will install Rustlings and give you access to the `rustlings` command. Run
In PowerShell, set `ExecutionPolicy` to `RemoteSigned`:
```ps
Set-ExecutionPolicy RemoteSigned
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
```
Then, you can run: