about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorJosh Triplett <josh@joshtriplett.org>2025-05-20 18:04:53 +0200
committerJosh Triplett <josh@joshtriplett.org>2025-05-20 18:25:06 +0200
commit17fdf19c9cd566987c3f96f69ac60d4741e05b07 (patch)
treed9c095bb62e2c58014b7d50db1119134a0a16aa5 /library/std/src
parentc3b750ce0f6d1b40874f88b552d271abea3a3dde (diff)
`CommandExt::chroot`: Add tracking issue
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/os/unix/process.rs2
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;
 }