Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,16 @@
# changelog for gcov2lcov

## 1.0.6 [2023-08-18]

* performance otimizations (thanks to zzh8829, #16)
* dependency upgrades

## 1.0.5 [2021-04-28]

* new: option `-use-absolute-source-path` - when set absolut path names are
used for the SF value (#10)
* compile with go 1.16

## 1.0.2 [2020-04-25]

* fix calculation of LH and LF values which led to wrong calculation of
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func findFile(filePath string) (string, error) {
if result, ok = pkgCache[dir]; !ok {
pkg, err := build.Import(dir, ".", build.FindOnly)
if err == nil {
result = cacheEntry{filepath.Join(pkg.Dir), nil}
result = cacheEntry{pkg.Dir, nil}
} else {
result = cacheEntry{"", err}
}
Expand Down