Warn about possible vault corruption

This commit is contained in:
Joscha 2022-08-08 21:29:15 +02:00
parent db7abaf000
commit e00ce4ebba

View file

@ -33,19 +33,25 @@ $ rustup update
### Installing cove ### Installing cove
To install or update to the latest release of cove, run the following command: To install or update to the latest release of cove, run the following command:
```bash ```bash
$ cargo install --force --git https://github.com/Garmelon/cove --branch latest $ cargo install --force --git https://github.com/Garmelon/cove --branch latest
``` ```
If you like to live dangerously and want to install or update to the latest, If you like to live dangerously and want to install or update to the latest,
bleeding-edge, possibly-broken commit from the repo's main branch, run the bleeding-edge, possibly-broken commit from the repo's main branch, run the
following command: following command.
**Warning:** This could corrupt your vault. Make sure to make a backup before
running the command.
```bash ```bash
$ cargo install --force --git https://github.com/Garmelon/cove $ cargo install --force --git https://github.com/Garmelon/cove
``` ```
To install a specific version of cove, run the following command and substitute To install a specific version of cove, run the following command and substitute
in the full version you want to install: in the full version you want to install:
```bash ```bash
$ cargo install --force --git https://github.com/Garmelon/cove --tag v0.1.0 $ cargo install --force --git https://github.com/Garmelon/cove --tag v0.1.0
``` ```