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 2b32b6f78c24c4e0f85b18818013feddd75c5bde
parent a6cfdddfd8c2711fce850ea8e9038ad0a62f83a3
Author: Helmut K. C. Tessarek <tessarek@evermeet.cx>
Date:   Tue,  4 Jul 2023 18:08:52 -0400

fix version when compiled at a specific commit

When a specific commit is checked out from the main branch, the vaultwarden
version is reported as `vaultwarden x.y.z-githash (HEAD)`.
This is a problem, because the admin interface reports this as a version from
a branch called HEAD, while in reality the commit was from the main branch.

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

diff --git a/build.rs b/build.rs @@ -72,7 +72,7 @@ fn version_from_git_info() -> Result<String, std::io::Error> { // Combined version if let Some(exact) = exact_tag { Ok(exact) - } else if &branch != "main" && &branch != "master" { + } else if &branch != "main" && &branch != "master" && &branch != "HEAD" { Ok(format!("{last_tag}-{rev_short} ({branch})")) } else { Ok(format!("{last_tag}-{rev_short}"))