diff options
| author | Jeff Carr <[email protected]> | 2025-10-03 10:03:01 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-03 10:03:01 -0500 |
| commit | afc968adee2f691595ca709cd0ca8a84b7da060f (patch) | |
| tree | a028ce4928ab96e0c33b02fdbd6730d81627ed7c | |
| parent | 071b451c9840010e648c673ddca36d4f4cdb724c (diff) | |
--version
| -rw-r--r-- | Makefile | 2 | ||||
| -rw-r--r-- | main.go | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ VERSION = $(shell git describe --tags) -BUILDTIME = $(shell date +%Y.%m.%d_%H%M) +BUILDTIME = $(shell date +%s) run: install go-mod-clean --version @@ -24,7 +24,7 @@ var configSave bool func main() { auto = prep.Bash(&argv) // add support for bash autocomplete with go-arg // this line must be before anything else - log.Info("go-mod-clean version", VERSION, "built on", BUILDTIME) + log.Info(auto.Version()) forge = forgepb.Init() |
