From e242704d09bb52af712f7908bb21f5c89db6f735 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Garc=C3=ADa?= Date: Fri, 11 Jan 2019 00:07:56 +0100 Subject: [PATCH] The /target/... path for the web vault is only when running the binary directly, when using cargo run it's like before --- Building-binary.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Building-binary.md b/Building-binary.md index 29d14b2..3d20fdd 100644 --- a/Building-binary.md +++ b/Building-binary.md @@ -49,7 +49,9 @@ npm install npm run dist ``` -Finally copy the contents of the `build` folder into the `bitwarden_rs/target/release/web-vault` folder. +Finally copy the contents of the `build` folder into the destination folder: +- If you run with `cargo run --release`, it's `bitwarden_rs/web-vault`. +- If you run the compiled binary directly, it's next to the binary, in `bitwarden_rs/target/release/web-vault`. ## Configuration The available configuration options are documented in the default `.env` file, and they can be modified by uncommenting the desired options in that file or by setting their respective environment variables. See the Configuration section of this wiki for the main configuration options available.