summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorIvan Nerazumov <64264529+cseltol@users.noreply.github.com>2021-03-13 18:45:52 +0700
committerGitHub <noreply@github.com>2021-03-13 18:45:52 +0700
commitaa9a943ddf3ae260782e73c26bcc9db60e5894b6 (patch)
tree80b73e2e96aaee556b7a5bc9f3ef0b88e5422847 /README.md
parentebdb66c7bfb6d687a14cc511a559a222e6fc5de4 (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
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index b958fae..3b7ff16 100644
--- a/README.md
+++ b/README.md
@@ -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: