Fixed issue with pipeline I/O in command substitutions

This commit is contained in:
2026-02-25 17:54:17 -05:00
parent 2d0d919e66
commit 8c003f54e2
2 changed files with 14 additions and 4 deletions

View File

@@ -185,7 +185,7 @@ pub struct IoGroup(RawFd, RawFd, RawFd);
/// Each stack frame represents the redirections of a single command
#[derive(Default, Clone, Debug)]
pub struct IoFrame {
redirs: Vec<Redir>,
pub redirs: Vec<Redir>,
saved_io: Option<IoGroup>,
}