diff options
| author | Ivan Nerazumov <64264529+cseltol@users.noreply.github.com> | 2021-03-13 18:45:52 +0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-13 18:45:52 +0700 |
| commit | aa9a943ddf3ae260782e73c26bcc9db60e5894b6 (patch) | |
| tree | 80b73e2e96aaee556b7a5bc9f3ef0b88e5422847 | |
| parent | ebdb66c7bfb6d687a14cc511a559a222e6fc5de4 (diff) | |
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
| -rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
