mirror of https://github.com/perkeep/perkeep.git
misc/monthly.go: add blank lines to release notes source
Change-Id: Ia3ef2b037ad20b7b75f52609f1a2b1c1010b642f
This commit is contained in:
parent
cc5f683e57
commit
5146f917eb
|
@ -259,6 +259,7 @@ Camlistore version <a href='https://github.com/camlistore/camlistore/commit/{{.C
|
||||||
<p>
|
<p>
|
||||||
<ul>
|
<ul>
|
||||||
{{- range $pkg, $changes := .ReleaseNotes}}
|
{{- range $pkg, $changes := .ReleaseNotes}}
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
{{$pkg}}:
|
{{$pkg}}:
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -267,6 +268,7 @@ Camlistore version <a href='https://github.com/camlistore/camlistore/commit/{{.C
|
||||||
{{- end}}
|
{{- end}}
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
{{- end}}
|
{{- end}}
|
||||||
</ul>
|
</ul>
|
||||||
</p>
|
</p>
|
||||||
|
@ -623,7 +625,17 @@ func main() {
|
||||||
|
|
||||||
releaseData, err := listDownloads()
|
releaseData, err := listDownloads()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatal(err)
|
if *flagSkipGen {
|
||||||
|
// Most likely we're failing because we can't reach the
|
||||||
|
// bucket (working offline), annd we're working on this
|
||||||
|
// program and testing things out, so make this error
|
||||||
|
// non-critical so we can still generate the release notes
|
||||||
|
// and stats.
|
||||||
|
log.Print(err)
|
||||||
|
releaseData = &ReleaseData{}
|
||||||
|
} else {
|
||||||
|
log.Fatal(err)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if *flagStatsFrom != "" && !isWIP() {
|
if *flagStatsFrom != "" && !isWIP() {
|
||||||
|
|
Loading…
Reference in New Issue