Check wsl interop

This commit is contained in:
crschnick
2025-06-10 04:38:04 +00:00
parent e9abbae7ab
commit c99d8de028
3 changed files with 4 additions and 4 deletions
@@ -95,7 +95,7 @@ public interface ParentSystemAccess {
}
@Override
public boolean supportsExecutables() {
public boolean supportsExecutables() throws Exception {
return a1.supportsExecutables() && a2.supportsExecutables();
}
@@ -129,7 +129,7 @@ public interface ParentSystemAccess {
boolean supportsFileSystemAccess();
boolean supportsExecutables();
boolean supportsExecutables() throws Exception;
boolean supportsExecutableEnvironment();
@@ -81,7 +81,7 @@ public interface ShellControl extends ProcessControl {
return true;
}
ShellControl getMachineRootSession();
ShellControl getMachineRootSession() throws Exception;
String getOsName();
@@ -115,7 +115,7 @@ public class WrapperShellControl implements ShellControl {
}
@Override
public ShellControl getMachineRootSession() {
public ShellControl getMachineRootSession() throws Exception {
return parent.getMachineRootSession();
}