We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reference: https://discourse.gohugo.io/t/seems-hugo-no-longer-throw-an-error-if-output-format-is-invalid/52912
This worked as expected through v0.122.0. Failing test:
// Issue 13199 func TestInvalidOutputFormat(t *testing.T) { t.Parallel() files := ` -- hugo.toml -- disableKinds = ['page','rss','section','sitemap','taxonomy','term'] [outputs] home = ['html','foo'] -- layouts/index.html -- x ` b, err := hugolib.TestE(t, files) b.Assert(err.Error(), qt.Contains, `failed to create config: unknown output format "foo" for kind "home"`) }
The text was updated successfully, but these errors were encountered:
config/allconfig: Throw error when output format is not defined
05c4394
Fixes gohugoio#13199
eb1dbe0
Fixes #13199
jmooring
Successfully merging a pull request may close this issue.
Reference: https://discourse.gohugo.io/t/seems-hugo-no-longer-throw-an-error-if-output-format-is-invalid/52912
This worked as expected through v0.122.0. Failing test:
The text was updated successfully, but these errors were encountered: