diff options
| author | Josh Triplett <josh@joshtriplett.org> | 2025-05-20 18:04:53 +0200 |
|---|---|---|
| committer | Josh Triplett <josh@joshtriplett.org> | 2025-05-20 18:25:06 +0200 |
| commit | 17fdf19c9cd566987c3f96f69ac60d4741e05b07 (patch) | |
| tree | d9c095bb62e2c58014b7d50db1119134a0a16aa5 /library/std | |
| parent | c3b750ce0f6d1b40874f88b552d271abea3a3dde (diff) | |
`CommandExt::chroot`: Add tracking issue
Diffstat (limited to 'library/std')
| -rw-r--r-- | library/std/src/os/unix/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/process.rs b/library/std/src/os/unix/process.rs index 8d238aa5835..659b3544834 100644 --- a/library/std/src/os/unix/process.rs +++ b/library/std/src/os/unix/process.rs @@ -208,7 +208,7 @@ pub trait CommandExt: Sealed { /// If no directory has been specified with `Command::current_dir`, this will set the directory /// to `/`, to avoid leaving the current directory outside the chroot. (This is an intentional /// difference from the underlying `chroot` system call.) - #[unstable(feature = "process_chroot", issue = "none")] + #[unstable(feature = "process_chroot", issue = "141298")] fn chroot<P: AsRef<Path>>(&mut self, dir: P) -> &mut process::Command; } |
