From 5e34ae6199da8a579a0e5589483172e140217cc7 Mon Sep 17 00:00:00 2001 From: bep Date: Fri, 6 Feb 2015 10:39:54 +0100 Subject: [PATCH] Log ERROR on missing baseurl Fixes #877 --- commands/hugo.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/commands/hugo.go b/commands/hugo.go index e963cb28..7202b199 100644 --- a/commands/hugo.go +++ b/commands/hugo.go @@ -182,6 +182,10 @@ func InitializeConfig() { viper.Set("BaseUrl", BaseUrl) } + if viper.GetString("BaseUrl") == "" { + jww.ERROR.Println("No 'baseurl' set in configuration or as a flag. Features like page menus will not work without one.") + } + if Theme != "" { viper.Set("theme", Theme) } -- 2.30.2