no message

This commit is contained in:
2025-03-13 22:52:44 +03:00
parent cb7360ae86
commit c7626e877e
9 changed files with 22 additions and 110 deletions

View File

@@ -493,7 +493,7 @@ public class UserConnection {
commands_.add("cd " + Utils_.DQuotes(directory.full_name));
for (int i = 0; i < commands.length; ++i) {
if (i == commands.length - 1) {
commands_.add(commands[i] + " 1>" + Utils_.DQuotes(outFileName));
commands_.add(commands[i] + " 1>" + Utils_.DQuotes(outFileName) +" 2>err.txt");
} else {
commands_.add(commands[i]);
}