simplified buildSite & better error handling around it

This commit is contained in:
spf13 2013-10-09 19:06:47 -04:00
parent 0318f7c149
commit f5fda80486
4 changed files with 12 additions and 14 deletions

View file

@ -46,6 +46,6 @@ func bench(cmd *cobra.Command, args []string) {
defer pprof.StopCPUProfile()
for i := 0; i < benchmarkTimes; i++ {
_, _ = buildSite()
_ = buildSite()
}
}