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
Copying ENV to ENV_ORIGIN when initializing Pipelines.
CmdDependency(; env = [ prepend_path("PATH", "/bin"; delim = ":"), setenv("NEW_VAR", "value") ])
env is some modification of env, but not change env directly.
Modification syntax can be like Modulefile, such as prepend_path, setenv. Since setenv is defined in Julia, we can use another name.
setenv
Only pass new env when running Cmd. (setenv)
The text was updated successfully, but these errors were encountered:
run function can be wrapped in withenv. Withenv is not thread-safe.
withenv
Sorry, something went wrong.
No branches or pull requests
Copying ENV to ENV_ORIGIN when initializing Pipelines.
env is some modification of env, but not change env directly.
Modification syntax can be like Modulefile, such as prepend_path, setenv. Since
setenv
is defined in Julia, we can use another name.Only pass new env when running Cmd. (setenv)
The text was updated successfully, but these errors were encountered: