From 309db474c72aaa94c178a1f00d58ba8210651f99 Mon Sep 17 00:00:00 2001 From: Noah Campbell Date: Wed, 7 Aug 2013 17:21:22 -0700 Subject: Nitro timer is encapsulated. Remove the need for NewSite by relying on appropriate defaults. Renamed site.c to site.Config to allow Sites to be created outside the package. --- main.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'main.go') diff --git a/main.go b/main.go index 8b91bee86..d89b9f10c 100644 --- a/main.go +++ b/main.go @@ -102,7 +102,7 @@ func main() { } if *checkMode { - site := hugolib.NewSite(config) + site := hugolib.Site{Config: *config} site.Analyze() os.Exit(0) } @@ -143,7 +143,7 @@ func serve(port string, config *hugolib.Config) { func buildSite(config *hugolib.Config) (site *hugolib.Site, err error) { startTime := time.Now() - site = hugolib.NewSite(config) + site = &hugolib.Site{Config: *config} err = site.Build() if err != nil { return -- cgit v1.2.3