From 5b8660e989081d9f2fc6ab5926da2c9d65b871aa Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 24 May 2019 00:20:59 -0700 Subject: [PATCH] buildtime debugging Signed-off-by: Jeff Carr --- splash.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/splash.go b/splash.go index 829e361..bc2af04 100644 --- a/splash.go +++ b/splash.go @@ -39,6 +39,10 @@ func ShowSplashBox(vbox *ui.Box, atest chan int, custom func(int, string)) *ui.B tmp := "go build version: " + Data.GoVersion newbox.Append(ui.NewLabel(tmp), false) } + if (Data.Buildtime != "") { + tmp := "build date: " + Data.Buildtime + newbox.Append(ui.NewLabel(tmp), false) + } } okButton := CreateButton("OK", "DONE", custom)