fix: install with shell

This commit is contained in:
debugtalk
2022-01-20 14:09:09 +08:00
parent ad15f39e77
commit 74ea26af08
2 changed files with 10 additions and 4 deletions

View File

@@ -29,7 +29,10 @@ See [CHANGELOG].
You can install `hrp` with one shell command, which will download the latest version's released binary and install to the current system.
```bash
$ curl -sL https://raw.githubusercontent.com/httprunner/hrp/main/cli/scripts/install.sh | bash
# install via curl
$ bash -c "$(curl -ksSL https://raw.githubusercontent.com/httprunner/hrp/main/cli/scripts/install.sh)"
# install via wget
$ bash -c "$(wget https://raw.githubusercontent.com/httprunner/hrp/main/cli/scripts/install.sh -O -)"
```
If you are a golang developer, you can also install `hrp` with `go get`.