Skip to content

Commit

Permalink
v9.10
Browse files Browse the repository at this point in the history
- CI | vaultwarden: Fix package version string
  • Loading branch information
MichaIng committed Jan 25, 2025
1 parent debb351 commit 921da14
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .build/software/vaultwarden/build.bash
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ G_EXEC curl -sSfo package.deb "https://dietpi.com/downloads/binaries/$G_DISTRO_N
old_version=$(dpkg-deb -f package.deb Version) || exit 1
G_EXEC rm package.deb
suffix=${old_version#*-dietpi}
[[ $old_version == "$version-"* ]] && pkg_version+="-dietpi$((suffix+1))" || pkg_version+="-dietpi1"
[[ $old_version == "$version-"* ]] && pkg_version="$version-dietpi$((suffix+1))" || pkg_version+="$version-dietpi1"
# - Env var to show version in web UI: https://github.com/MichaIng/DietPi/issues/7364
export VW_VERSION=$pkg_version
# - web vault
Expand Down

0 comments on commit 921da14

Please sign in to comment.