mirror of
https://github.com/quitesimpleorg/hs9001.git
synced 2025-07-12 01:54:57 +02:00
Add 'version' command
This commit is contained in:
5
main.go
5
main.go
@ -27,6 +27,9 @@ type HistoryEntry struct {
|
||||
timestamp time.Time
|
||||
}
|
||||
|
||||
var GitTag string
|
||||
var GitCommit string
|
||||
|
||||
func databaseLocation() string {
|
||||
envOverride := os.Getenv("HS9001_DB_PATH")
|
||||
if envOverride != "" {
|
||||
@ -354,6 +357,8 @@ func main() {
|
||||
os.Exit(23)
|
||||
case "import":
|
||||
importFromStdin(conn)
|
||||
case "version":
|
||||
fmt.Fprintf(os.Stdout, "Git Tag: %s\nGit Commit: %s\n", GitTag, GitCommit)
|
||||
default:
|
||||
fmt.Fprintf(os.Stderr, "Error: Unknown subcommand '%s' supplied\n\n", cmd)
|
||||
printUsage()
|
||||
|
Reference in New Issue
Block a user