maddy/cmd/imapsql-ctl/version.go
fox.cpp ae8fe2b14e
Fork imapsql-ctl utility from go-imap-sql repo
1. There is only one version for maddy and imapsql-ctl utility.
This prevents confusion about compatibility.

2. Modified imapsql-ctl understands maddy config format, this allows
it to read needed values from it without the need for lengthy commmand
line arguments.

Closes #148.
2019-10-16 23:19:40 +03:00

25 lines
589 B
Go

package main
import (
"fmt"
"runtime/debug"
)
const Version = "unknown (built from source tree)"
func buildInfo() string {
if info, ok := debug.ReadBuildInfo(); ok {
imapsqlVer := "unknown"
for _, dep := range info.Deps {
if dep.Path == "github.com/foxcpp/go-imap-sql" {
imapsqlVer = dep.Version
}
}
if info.Main.Version == "(devel)" {
return fmt.Sprintf("%s for maddy %s", imapsqlVer, Version)
}
return fmt.Sprintf("%s for maddy %s %s", imapsqlVer, info.Main.Version, info.Main.Sum)
}
return fmt.Sprintf("unknown for maddy %s (GOPATH build)", Version)
}