summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--splash.go4
1 files changed, 4 insertions, 0 deletions
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)