<#17519 remoting: support `{chroot}` in remote exe...
# github-notifications
q
#17519 remoting: support `{chroot}` in remote execution context New issue created by tdyas The Pants local and Docker command runners support substituting the string
{chroot}
in an argument or environment variable with the absolute path of the execution sandbox. This is done via the `apply_chroot` function. Pants should support the same substitution in remote execution as well. This will require use of a wrapper script since the remote execution environment's paths will not be known until the build action is actually invoked. A wrapper script for other purposes (append-only caches) was added by #17290 and thus it should be relatively straightforward to do this substitution. pantsbuild/pants