From e00ce4ebbac2a0b817195d77b81f78d2fe4afed3 Mon Sep 17 00:00:00 2001 From: Joscha Date: Mon, 8 Aug 2022 21:29:15 +0200 Subject: [PATCH] Warn about possible vault corruption --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 457090e..7cdfd17 100644 --- a/README.md +++ b/README.md @@ -33,19 +33,25 @@ $ rustup update ### Installing cove To install or update to the latest release of cove, run the following command: + ```bash $ 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, 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 $ cargo install --force --git https://github.com/Garmelon/cove ``` To install a specific version of cove, run the following command and substitute in the full version you want to install: + ```bash $ cargo install --force --git https://github.com/Garmelon/cove --tag v0.1.0 ```