Run the specified command inside the chroot, inheriting stdio. `args` must include the program as its first element.
(self, args: impl IntoIterator<Item = S>)
| 167 | /// Run the specified command inside the chroot, inheriting stdio. |
| 168 | /// `args` must include the program as its first element. |
| 169 | pub fn run<S: AsRef<OsStr>>(self, args: impl IntoIterator<Item = S>) -> Result<()> { |
| 170 | self.build_command(args)? |
| 171 | .log_debug() |
| 172 | .run_inherited_with_cmd_context() |
| 173 | } |
| 174 | |
| 175 | /// Run the specified command inside the chroot and capture stdout |
| 176 | /// as a string. `args` must include the program as its first |
nothing calls this directly
no test coverage detected