mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-11 20:03:58 +02:00
commands: Load config before creating the filesystem
To allow publishDir to be set in config file.
This commit is contained in:
@@ -1,10 +1,12 @@
|
||||
# Test the hugo command.
|
||||
|
||||
hugo --baseURL http://example.com/ --destination ${WORK}/newpublic --clock 2021-11-06T22:30:00.00+09:00 -e staging --config ${WORK}/myconfig --configDir ${WORK}/myconfigdir -s mysource
|
||||
hugo --baseURL http://example.com/ --minify --destination ${WORK}/newpublic --clock 2021-11-06T22:30:00.00+09:00 -e staging --config ${WORK}/myconfig --configDir ${WORK}/myconfigdir -s mysource
|
||||
stdout 'Pages.*|1'
|
||||
stdout 'Total in'
|
||||
grep 'Home: http://example.com/, Time: 2021-11-06' newpublic/index.html
|
||||
grep 'Environment: staging, foo: bar, bar: baz' newpublic/index.html
|
||||
# Verify that it's minified.
|
||||
grep '<body>Home' newpublic/index.html
|
||||
|
||||
hugo --quiet
|
||||
! stdout .
|
||||
@@ -17,7 +19,9 @@ foo = "bar"
|
||||
-- myconfigdir/_default/params.toml --
|
||||
bar = "baz"
|
||||
-- mysource/layouts/index.html --
|
||||
<body>
|
||||
Home: {{ .Permalink }}, Time: {{ now }}
|
||||
</body>
|
||||
Environment: {{ hugo.Environment }}, foo: {{ .Site.Params.foo }}, bar: {{ .Site.Params.bar }}
|
||||
-- mysource/layouts/_default/single.html --
|
||||
Title: {{ .Title }}
|
||||
|
12
testscripts/commands/hugo__publishdir_in_config.txt
Normal file
12
testscripts/commands/hugo__publishdir_in_config.txt
Normal file
@@ -0,0 +1,12 @@
|
||||
# Test the hugo command.
|
||||
|
||||
hugo
|
||||
|
||||
grep 'Home' newpublic/index.html
|
||||
|
||||
-- hugo.toml --
|
||||
baseURL = "http://example.org/"
|
||||
disableKinds = ["RSS", "sitemap", "robotsTXT", "404", "taxonomy", "term"]
|
||||
publishDir = "newpublic"
|
||||
-- layouts/index.html --
|
||||
Home.
|
Reference in New Issue
Block a user