From ca77f3bd8e8e1709dcf00071dab14b59e3574241 Mon Sep 17 00:00:00 2001 From: crschnick Date: Mon, 26 Feb 2024 07:18:53 +0000 Subject: [PATCH] More fixes --- core/src/main/java/io/xpipe/core/process/CommandControl.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/io/xpipe/core/process/CommandControl.java b/core/src/main/java/io/xpipe/core/process/CommandControl.java index 6f5460c76..37f4fba08 100644 --- a/core/src/main/java/io/xpipe/core/process/CommandControl.java +++ b/core/src/main/java/io/xpipe/core/process/CommandControl.java @@ -74,6 +74,8 @@ public interface CommandControl extends ProcessControl { String readStdoutDiscardErr() throws Exception; + String readJoinedOutputOrThrow() throws Exception; + String readStderrDiscardStdout() throws Exception; void discardOrThrow() throws Exception;