mirror of
https://github.com/xpipe-io/xpipe.git
synced 2026-04-24 00:21:11 -04:00
Fix shell dialect NPE
This commit is contained in:
@@ -31,7 +31,7 @@ public interface ShellDialect {
|
||||
String getExecutableName();
|
||||
|
||||
default boolean isCompatibleTo(ShellDialect other) {
|
||||
return other.equals(this);
|
||||
return this.equals(other);
|
||||
}
|
||||
|
||||
String getCatchAllVariable();
|
||||
|
||||
Reference in New Issue
Block a user