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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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: