Skip to content

Commit

Permalink
Fix versioning logic
Browse files Browse the repository at this point in the history
  • Loading branch information
zliang-akamai committed Oct 24, 2024
1 parent b737a86 commit c5f5244
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion version.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ func init() {
if dep.Path == packagePath {
if dep.Replace != nil {
Version = dep.Replace.Version
} else {
Version = dep.Version
}
Version = dep.Version
break
}
}
Expand Down

0 comments on commit c5f5244

Please sign in to comment.