projects
/
brevno-suite
/
hugo
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
43e48a8
)
Log ERROR on missing baseurl
author
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 6 Feb 2015 09:39:54 +0000
(10:39 +0100)
committer
bep
<bjorn.erik.pedersen@gmail.com>
Fri, 6 Feb 2015 09:39:54 +0000
(10:39 +0100)
Fixes #877
commands/hugo.go
patch
|
blob
|
history
diff --git
a/commands/hugo.go
b/commands/hugo.go
index e963cb288d360e590fd6c1f0f1c509c42d601612..7202b199d9ed62c62477c9b3a8f168f722aea6a3 100644
(file)
--- 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)
}