Add timezone to buildDate
authorbep <bjorn.erik.pedersen@gmail.com>
Tue, 9 Dec 2014 10:42:07 +0000 (11:42 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Tue, 9 Dec 2014 10:42:07 +0000 (11:42 +0100)
commands/version.go

index 0fdffba1462cf1811b1a82db653497c241e7b938..360aef2475b42c2b0a7998c293292eb7c4ea59b1 100644 (file)
@@ -74,6 +74,6 @@ func setBuildDate() {
 // formatBuildDate formats the buildDate according to the value in
 // .Params.DateFormat, if it's set.
 func formatBuildDate() {
-       t, _ := time.Parse("2006-01-02T15:04:05", buildDate)
+       t, _ := time.Parse("2006-01-02T15:04:05-0700", buildDate)
        buildDate = t.Format(time.RFC3339)
 }