diff --git a/misc/monthly.go b/misc/monthly.go index 134a1497c..b2c950d67 100644 --- a/misc/monthly.go +++ b/misc/monthly.go @@ -259,6 +259,7 @@ Camlistore version + {{- end}}

@@ -623,7 +625,17 @@ func main() { releaseData, err := listDownloads() 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() {