Log ERROR on missing baseurl
authorbep <bjorn.erik.pedersen@gmail.com>
Fri, 6 Feb 2015 09:39:54 +0000 (10:39 +0100)
committerbep <bjorn.erik.pedersen@gmail.com>
Fri, 6 Feb 2015 09:39:54 +0000 (10:39 +0100)
Fixes #877

commands/hugo.go

index e963cb288d360e590fd6c1f0f1c509c42d601612..7202b199d9ed62c62477c9b3a8f168f722aea6a3 100644 (file)
@@ -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)
        }