Use file paths for ssh path fix

This commit is contained in:
crschnick
2025-06-18 13:34:31 +00:00
parent a459b236cf
commit c06f49ef98
@@ -133,6 +133,10 @@ public class ShellView {
shellControl.getShellDialect().getWhichCommand(executable));
}
public void cd(FilePath directory) throws Exception {
cd(directory.toString());
}
public void cd(String directory) throws Exception {
var d = shellControl.getShellDialect();
var cmd = shellControl.command(d.getCdCommand(directory));