Skip to content

Commit

Permalink
fix(renv): "version" key should be capitalize
Browse files Browse the repository at this point in the history
  • Loading branch information
iseki0 committed Sep 26, 2024
1 parent 36e4723 commit bb9c73c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion module/renv/renv.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func (Inspector) InspectProject(ctx context.Context) error {
continue
}
var name = it.Get("Package").String()
var version = it.Get("version").String()
var version = it.Get("Version").String()
var di model.DependencyItem
di.CompName = name
di.CompVersion = version
Expand Down

0 comments on commit bb9c73c

Please sign in to comment.