mirror of
https://github.com/minio/minio.git
synced 2024-12-26 23:25:54 -05:00
Merge pull request #514 from harshavardhana/pr_out_fix_build_date_typo
This commit is contained in:
commit
7e72cefd74
6
main.go
6
main.go
@ -243,8 +243,8 @@ func getSystemData() map[string]string {
|
||||
// Version is based on MD5SUM of its binary
|
||||
var Version = mustHashBinarySelf()
|
||||
|
||||
// BuilDate - build time
|
||||
var BuilDate string
|
||||
// BuildDate - build time
|
||||
var BuildDate string
|
||||
|
||||
func main() {
|
||||
// set up iodine
|
||||
@ -255,7 +255,7 @@ func main() {
|
||||
app := cli.NewApp()
|
||||
app.Name = "minio"
|
||||
app.Version = Version
|
||||
app.Compiled, _ = time.Parse(time.RFC3339Nano, BuilDate)
|
||||
app.Compiled, _ = time.Parse(time.RFC3339Nano, BuildDate)
|
||||
app.Author = "Minio.io"
|
||||
app.Usage = "Minimalist Object Storage"
|
||||
app.Flags = flags
|
||||
|
Loading…
Reference in New Issue
Block a user