Small fixes [release]

This commit is contained in:
crschnick
2023-02-10 14:36:15 +00:00
parent 2d931ce1a4
commit c91fe5b5c5
2 changed files with 2 additions and 7 deletions

View File

@@ -47,7 +47,7 @@ public abstract class ProcessControlProvider {
localProcessControlProvider.command(parent, command, terminalCommand))
.filter(Objects::nonNull)
.findFirst()
.orElseThrow();
.orElse(null);
}
public static ShellProcessControl createSsh(Object sshStore) {