Skip to content

Commit

Permalink
fix(docs): Added a necessary step to Windows installation process
Browse files Browse the repository at this point in the history
  • Loading branch information
fmoko committed Dec 22, 2019
2 parents 426a7bb + 2021a1a commit 3906efc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,13 @@ This will install Rustlings and give you access to the `rustlings` command. Run

## Windows

You can run:
First, set `ExecutionPolicy` to `RemoteSigned`:

```ps
Set-ExecutionPolicy RemoteSigned
```

Then, you can run:

```ps
Invoke-WebRequest https://git.io/rustlings-win | Select-Object -ExpandProperty Content | Out-File $env:TMP/install_rustlings.ps1; Unblock-File $env:TMP/install_rustlings.ps1; Invoke-Expression $env:TMP/install_rustlings.ps1
Expand Down

0 comments on commit 3906efc

Please sign in to comment.