Avoid failing with "module not found" for hugo mod init and similar

Fixes #8940
This commit is contained in:
Bjørn Erik Pedersen
2021-08-31 12:08:11 +02:00
parent 0fc2ce9e4b
commit a0489c2dfd
2 changed files with 11 additions and 2 deletions

View File

@@ -309,7 +309,12 @@ func (c *commandeer) loadConfig(mustHaveConfigFile, running bool) error {
doWithConfig)
if err != nil {
return err
// We should improve the error handling here,
// but with hugo mod init and similar there is a chicken and egg situation
// with modules already configured in config.toml, so ignore those errors.
if mustHaveConfigFile || !moduleNotFoundRe.MatchString(err.Error()) {
return err
}
} else if mustHaveConfigFile && len(configFiles) == 0 {
return hugolib.ErrNoConfigFile
}