docs(cosmovisor): fix typo in installation instructions (#17038)

This commit is contained in:
Julien Robert
2023-07-18 08:47:55 +00:00
committed by GitHub
parent 1236c52987
commit 9ba6b72fe5
5 changed files with 10 additions and 4 deletions
+2 -2
View File
@@ -52,10 +52,10 @@ To install the latest version of `cosmovisor`, run the following command:
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
```
To install a previous version, you can specify the version:
To install a specific version, you can specify the version:
```shell
go install github.com/cosmos/cosmos-sdk/cosmovisor/cmd/cosmovisor@v1.5.0
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@v1.5.0
```
Run `cosmovisor version` to check the cosmovisor version.
+6
View File
@@ -1,3 +1,9 @@
# Cosmovisor v1.5.0 Release Notes
See the [CHANGELOG](https://github.com/cosmos/cosmos-sdk/blob/tools/cosmovisor/v1.5.0/tools/cosmovisor/CHANGELOG.md) for details on the changes in v1.5.0.
## Installation instructions
```go
go install cosmossdk.io/tools/cosmovisor/cmd/cosmovisor@latest
```