vw_small

Hardened fork of Vaultwarden (https://github.com/dani-garcia/vaultwarden) with fewer features.
git clone https://git.philomathiclife.com/repos/vw_small
Log | Files | Refs | README

commit f42ac5f2c02b519623547b6c27d489f73b12a190
parent 2a60414031c79ffd05c2e2a0ffc26158a91b1aa5
Author: Daniel GarcĂ­a <dani-garcia@users.noreply.github.com>
Date:   Tue, 29 Jan 2019 21:44:46 +0100

Update web vault error message

Diffstat:
Msrc/main.rs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main.rs b/src/main.rs @@ -222,7 +222,7 @@ fn check_web_vault() { let index_path = Path::new(&CONFIG.web_vault_folder()).join("index.html"); if !index_path.exists() { - error!("Web vault is not found. Please follow the steps in the README to install it"); + error!("Web vault is not found. To install it, please follow the steps in https://github.com/dani-garcia/bitwarden_rs/wiki/Building-binary#install-the-web-vault"); exit(1); } }