Attempt to resolve issue 579.

Config file is not being picked up when running `hugo server --watch`
from withing the hugo project directory (the site).
This commit is contained in:
Justin Calleja 2014-10-24 19:42:48 +02:00
parent 83fd92627c
commit d2af0d4a25

View file

@ -39,7 +39,7 @@ import (
)
// A set of paths to look for the config file in
var configPaths []string
var configPaths []string = []string{"."}
// Name of file to look for inside the path
var configName string = "config"