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
Under certain conditions, environment variables set in context_in can be lost.
This is fine ($test_var is known) :
setup: - first_step: - bloc1: - exec_in: export test_var="test" - exec_in: echo $test_var
This is not fine ($test_var is unknown) :
setup: - first_step: - bloc1: - exec_in: export test_var="test" - bloc2: - exec_in: echo $test_var
This could be related to #64
The text was updated successfully, but these errors were encountered:
This can also happen with the out_context
Sorry, something went wrong.
No branches or pull requests
Under certain conditions, environment variables set in context_in can be lost.
This is fine ($test_var is known) :
This is not fine ($test_var is unknown) :
This could be related to #64
The text was updated successfully, but these errors were encountered: