From f42ac5f2c02b519623547b6c27d489f73b12a190 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Tue, 29 Jan 2019 21:44:46 +0100 Subject: [PATCH] Update web vault error message --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 18e2b83b..615f4203 100644 --- 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); } }