From 3ac1ee16f377d31a0fb80c8dae28b6239ac4229e Mon Sep 17 00:00:00 2001 From: Terin Stock Date: Sun, 9 Mar 2025 17:47:56 +0100 Subject: [chore] remove vendor --- vendor/codeberg.org/gruf/go-debug/debug.go | 53 ------------------------------ 1 file changed, 53 deletions(-) delete mode 100644 vendor/codeberg.org/gruf/go-debug/debug.go (limited to 'vendor/codeberg.org/gruf/go-debug/debug.go') diff --git a/vendor/codeberg.org/gruf/go-debug/debug.go b/vendor/codeberg.org/gruf/go-debug/debug.go deleted file mode 100644 index e7121390d..000000000 --- a/vendor/codeberg.org/gruf/go-debug/debug.go +++ /dev/null @@ -1,53 +0,0 @@ -package debug - -import ( - _debug "runtime/debug" -) - -// Run will only call fn if DEBUG is enabled. -func Run(fn func()) { - if DEBUG { - fn() - } -} - -// BuildInfo will return a useful new-line separated build info string for current binary, setting name as given value. -func BuildInfo(name string) string { - // Read build info from current binary - build, ok := _debug.ReadBuildInfo() - if !ok { - return "name=" + name + "\n" - } - - var flags, vcs, commit, time string - - // Parse build information from BuildInfo.Settings - for i := 0; i < len(build.Settings); i++ { - switch build.Settings[i].Key { - case "-gcflags": - flags += ` -gcflags="` + build.Settings[i].Value + `"` - case "-ldflags": - flags += ` -ldflags="` + build.Settings[i].Value + `"` - case "-tags": - flags += ` -tags="` + build.Settings[i].Value + `"` - case "vcs": - vcs = build.Settings[i].Value - case "vcs.revision": - commit = build.Settings[i].Value - if len(commit) > 8 { - commit = commit[:8] - } - case "vcs.time": - time = build.Settings[i].Value - } - } - - return "" + - "name=" + name + "\n" + - "vcs=" + vcs + "\n" + - "commit=" + commit + "\n" + - "version=" + build.Main.Version + "\n" + - "path=" + build.Path + "\n" + - "build=" + build.GoVersion + flags + "\n" + - "time=" + time + "\n" -} -- cgit v1.2.3