mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 06:37:52 +00:00
Shell: Allow the heredoc node to act as a redirection too
This will be used in a future commit to implement POSIX sh heredocs.
This commit is contained in:
committed by
Ali Mohammad Pur
parent
9c61fed37c
commit
4efc632e15
@@ -2352,6 +2352,12 @@ void Shell::possibly_print_error() const
|
||||
case ShellError::LaunchError:
|
||||
warnln("Shell: {}", m_error_description);
|
||||
break;
|
||||
case ShellError::PipeFailure:
|
||||
warnln("Shell: pipe() failed for {}", m_error_description);
|
||||
break;
|
||||
case ShellError::WriteFailure:
|
||||
warnln("Shell: write() failed for {}", m_error_description);
|
||||
break;
|
||||
case ShellError::InternalControlFlowBreak:
|
||||
case ShellError::InternalControlFlowContinue:
|
||||
case ShellError::InternalControlFlowInterrupted:
|
||||
|
||||
Reference in New Issue
Block a user