Fix shell dialect NPE

This commit is contained in:
crschnick
2025-02-12 10:40:34 +00:00
parent 9b613b57ed
commit cb937200bc

View File

@@ -31,7 +31,7 @@ public interface ShellDialect {
String getExecutableName();
default boolean isCompatibleTo(ShellDialect other) {
return other.equals(this);
return this.equals(other);
}
String getCatchAllVariable();