From 172ff5ea7a13792998e543c6617fd2c4f0600731 Mon Sep 17 00:00:00 2001 From: Noah Campbell Date: Fri, 13 Sep 2013 15:06:37 -0700 Subject: [PATCH] Initialize HTMLRedirectAlias before ShowPlan() Without it, no alias information is generated when running --check --- hugolib/site.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hugolib/site.go b/hugolib/site.go index 7c86d412..b3a3a765 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -116,6 +116,9 @@ func (s *Site) Build() (err error) { func (s *Site) Analyze() { s.Process() s.initTarget() + s.Alias = &target.HTMLRedirectAlias{ + PublishDir: s.absPublishDir(), + } s.ShowPlan(os.Stdout) } -- 2.30.2