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
As configs merging (include mechanic) is implemented right now, whole block will override parent block.
# vender.hcl ui { front { msg_intro = "hello" msg_wait = "please wait" } } include "local.hcl" {} # local.hcl ui { front { msg_intro = "welcome" } }
Yields config.UI.Front.MsgIntro="welcome" MsgWait=""
config.UI.Front.MsgIntro="welcome" MsgWait=""
Should be config.UI.Front.MsgIntro="welcome" MsgWait="please wait"
config.UI.Front.MsgIntro="welcome" MsgWait="please wait"
Options to explore: hcl2, toml, lua.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As configs merging (include mechanic) is implemented right now, whole block will override parent block.
Yields
config.UI.Front.MsgIntro="welcome" MsgWait=""
Should be
config.UI.Front.MsgIntro="welcome" MsgWait="please wait"
Options to explore: hcl2, toml, lua.
The text was updated successfully, but these errors were encountered: