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
New boolean variable that exposes variables as environment variables with the same name.
If placed under an individual variable definition, it only affects that variable. If placed directly under vars:, it affects all variables.
vars:
I'd like to run a Jinja2 template via minijinja-cli --env ....
minijinja-cli --env ...
The workaround is to simply use env in place of vars, potentially exposing more variables than intended.
env
vars
Second workaround is to explicitly reference variables when defining the environment variables.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
New boolean variable that exposes variables as environment variables with the same name.
If placed under an individual variable definition, it only affects that variable. If placed directly under
vars:
, it affects all variables.I'd like to run a Jinja2 template via
minijinja-cli --env ...
.The workaround is to simply use
env
in place ofvars
, potentially exposing more variables than intended.Second workaround is to explicitly reference variables when defining the environment variables.
The text was updated successfully, but these errors were encountered: