diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2025-09-29 21:48:35 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2025-09-29 21:48:35 +0200 |
| commit | fa24620c50a56ae6c3c31575e861098d0f0ed177 (patch) | |
| tree | e6963f607605577ca06dfeff666e5a186bb2b15f /internal/rtree/repo.go | |
| parent | 24762f09de2aa8cada3f3c63afa313e06ebf47c8 (diff) | |
| download | gofu-fa24620c50a56ae6c3c31575e861098d0f0ed177.tar.gz | |
run `modernize -fix ./...`
Also drop util/gocovcat.go which has been obsolete since
122068efd4a348921b736b4456d4e1c999dbfb79.
Diffstat (limited to 'internal/rtree/repo.go')
| -rw-r--r-- | internal/rtree/repo.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/rtree/repo.go b/internal/rtree/repo.go index 2267666..397df4f 100644 --- a/internal/rtree/repo.go +++ b/internal/rtree/repo.go @@ -71,7 +71,7 @@ func NewRepoFromAbsolutePath(path string) (repo Repo, err error) { return } - for _, line := range strings.Split(out, "\n") { + for line := range strings.SplitSeq(out, "\n") { match := remoteConfigRx.FindStringSubmatch(line) if match == nil { continue |
