mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-04 21:43:42 +00:00
commit
9a1312e8ad
@ -1,5 +1,5 @@
|
||||
{
|
||||
"gitbook": "2.x.x",
|
||||
"gitbook": "2.x",
|
||||
"title": "Go语言圣经",
|
||||
"description": "<The Go Programming Language>中文版",
|
||||
"language": "zh-hans",
|
||||
|
@ -28,8 +28,8 @@ func main() {
|
||||
}
|
||||
|
||||
fmt.Println("build version", version)
|
||||
fmt.Println(commitTime.Format("2006-01-02"))
|
||||
fmt.Println(buildTime.Format("2006-01-02"))
|
||||
fmt.Println(commitTime.Format("2006-01-02 15:04:05"))
|
||||
fmt.Println(buildTime.Format("2006-01-02 15:04:05"))
|
||||
}
|
||||
|
||||
// 生成版本文件
|
||||
@ -44,8 +44,8 @@ func makeVersionMarkdown(version string, commitTime, buildTime time.Time) string
|
||||
- 构建时间:%s
|
||||
`,
|
||||
version, version,
|
||||
commitTime.Format("2006-01-02"),
|
||||
buildTime.Format("2006-01-02"),
|
||||
commitTime.Format("2006-01-02 15:04:05"),
|
||||
buildTime.Format("2006-01-02 15:04:05"),
|
||||
)
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user