Fixed issue with pipeline I/O in command substitutions

This commit is contained in:
2026-02-25 17:54:17 -05:00
parent 66e1f63d41
commit 56264731c4
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>,
}