Skip to content

Commit

Permalink
web: fix build dev build (goauthentik#12473)
Browse files Browse the repository at this point in the history
Signed-off-by: Jens Langhammer <[email protected]>
  • Loading branch information
BeryJu authored Dec 24, 2024
1 parent 40b0f7d commit 83ecb64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/build.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ const baseArgs = {
function getVersion() {
let version = rootPackage.version;
if (process.env[envGitHashKey]) {
version = `${version}.${process.env[envGitHashKey]}`;
version = `${version}+${process.env[envGitHashKey]}`;
}
return version;
}
Expand Down

0 comments on commit 83ecb64

Please sign in to comment.