mirror of
https://github.com/quitesimpleorg/hs9001.git
synced 2024-11-21 14:17:52 +01:00
Add 'version' command
This commit is contained in:
parent
c206b07b2d
commit
216e59747c
6
Makefile
Normal file
6
Makefile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
GIT_COMMIT=$(shell git rev-list -1 HEAD)
|
||||||
|
GIT_TAG=$(shell git tag --sort="-version:refname" | head -n 1)
|
||||||
|
all:
|
||||||
|
go build -ldflags "-X main.GitCommit=${GIT_COMMIT} -X main.GitTag=${GIT_TAG}"
|
||||||
|
|
||||||
|
|
5
main.go
5
main.go
@ -27,6 +27,9 @@ type HistoryEntry struct {
|
|||||||
timestamp time.Time
|
timestamp time.Time
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var GitTag string
|
||||||
|
var GitCommit string
|
||||||
|
|
||||||
func databaseLocation() string {
|
func databaseLocation() string {
|
||||||
envOverride := os.Getenv("HS9001_DB_PATH")
|
envOverride := os.Getenv("HS9001_DB_PATH")
|
||||||
if envOverride != "" {
|
if envOverride != "" {
|
||||||
@ -354,6 +357,8 @@ func main() {
|
|||||||
os.Exit(23)
|
os.Exit(23)
|
||||||
case "import":
|
case "import":
|
||||||
importFromStdin(conn)
|
importFromStdin(conn)
|
||||||
|
case "version":
|
||||||
|
fmt.Fprintf(os.Stdout, "Git Tag: %s\nGit Commit: %s\n", GitTag, GitCommit)
|
||||||
default:
|
default:
|
||||||
fmt.Fprintf(os.Stderr, "Error: Unknown subcommand '%s' supplied\n\n", cmd)
|
fmt.Fprintf(os.Stderr, "Error: Unknown subcommand '%s' supplied\n\n", cmd)
|
||||||
printUsage()
|
printUsage()
|
||||||
|
Loading…
Reference in New Issue
Block a user