Various fixes

This commit is contained in:
crschnick
2024-08-09 15:38:20 +00:00
parent 9860b0c10f
commit 99971caba5
6 changed files with 11 additions and 12 deletions

View File

@@ -208,10 +208,6 @@ public interface ShellControl extends ProcessControl {
ShellControl singularSubShell(ShellOpenFunction command);
void writeLineAndReadEcho(String command) throws Exception;
void writeLineAndReadEcho(String command, boolean log) throws Exception;
void cd(String directory) throws Exception;
default CommandControl command(String command) {

View File

@@ -118,7 +118,9 @@ public interface ShellDialect {
CommandControl printUsernameCommand(ShellControl shellControl);
String getPrintExitCodeCommand(String prefix, String suffix);
String getPrintStartEchoCommand(String prefix);
String getPrintExitCodeCommand(String id, String prefix, String suffix);
int assignMissingExitCode();