Remove -k/--insecure option from curl installer (#8719)

Piping `curl` to `bash` while **disabling** certificate verification can lead to security problems.
This commit is contained in:
vrde 2018-05-31 14:43:06 +02:00 committed by Afri Schoedon
parent 9053c0dfd9
commit 581e510c2d
1 changed files with 2 additions and 2 deletions

View File

@ -138,13 +138,13 @@ first.
## Simple one-line installer for Mac and Ubuntu ## Simple one-line installer for Mac and Ubuntu
```bash ```bash
bash <(curl https://get.parity.io -Lk) bash <(curl https://get.parity.io -L)
``` ```
The one-line installer always defaults to the latest beta release. To install a stable release, run: The one-line installer always defaults to the latest beta release. To install a stable release, run:
```bash ```bash
bash <(curl https://get.parity.io -Lk) -r stable bash <(curl https://get.parity.io -L) -r stable
``` ```
## Start Parity ## Start Parity