mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-05-04 11:50:44 +00:00
Check wsl interop
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user