build(deps): bump github.com/gookit/config/v2 from 2.2.5 to 2.2.6

Bumps [github.com/gookit/config/v2](https://github.com/gookit/config) from 2.2.5 to 2.2.6.
- [Release notes](https://github.com/gookit/config/releases)
- [Commits](https://github.com/gookit/config/compare/v2.2.5...v2.2.6)

---
updated-dependencies:
- dependency-name: github.com/gookit/config/v2
  dependency-version: 2.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-04-29 14:15:29 +00:00
committed by GitHub
parent a97f5e4c2e
commit 452d40dad7
61 changed files with 1037 additions and 365 deletions
+2 -2
View File
@@ -4,7 +4,7 @@ import (
"bytes"
"fmt"
"io"
"path"
"path/filepath"
"runtime"
"strconv"
)
@@ -112,7 +112,7 @@ func (f *Func) FileLine() (file string, line int) {
func (f *Func) Location() string {
file, line := f.FileLine()
return f.Name() + "(), " + path.Base(file) + ":" + strconv.Itoa(line)
return f.Name() + "(), " + filepath.Base(file) + ":" + strconv.Itoa(line)
}
// String of the func