qq, why does `shell_command` have the `extra_env_v...
# general
e
qq, why does
shell_command
have the
extra_env_vars
field, but
run_shell_command
does not?
h
run_shell_command
runs without sandboxing, directly in your workspace, and it should consume the environment vars Pants was run with
shell_command
is sandboxed and the env vars are filtered
so
extra_env_vars
allows you to punch through that filtering
e
🤦 thanks, i should've just read the help 😉