Skip to content

Commit

Permalink
Strip version with ~ instead of - (#2076)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlteredCoder authored Feb 25, 2023
1 parent 40b5bcb commit 01ea78c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cwversion/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func VersionStr() string {
}

func VersionStrip() string {
version := strings.Split(Version, "-")
version := strings.Split(Version, "~")
return version[0]
}

Expand Down

0 comments on commit 01ea78c

Please sign in to comment.