Skip to content

Commit

Permalink
Don't include 'v' prefix in SemVer output
Browse files Browse the repository at this point in the history
  • Loading branch information
desplesda committed Mar 5, 2025
1 parent 58e4f75 commit 259d456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion get-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ OutputAssemblyFileVersion="$major.$minor.$patch.$commits_since_tag"

# Calculate the semver from the version (should be the same as the version, but
# just in case)
SemVer="v$major.$minor.$patch$prerelease"
SemVer="$major.$minor.$patch$prerelease"

# If there are any commits since the current tag, add that note
if [ "$commits_since_tag" -gt 0 ]; then
Expand Down

0 comments on commit 259d456

Please # to comment.