diff --git a/core/src/main/java/io/xpipe/core/process/ShellDialect.java b/core/src/main/java/io/xpipe/core/process/ShellDialect.java index 290a93ece..a546217d0 100644 --- a/core/src/main/java/io/xpipe/core/process/ShellDialect.java +++ b/core/src/main/java/io/xpipe/core/process/ShellDialect.java @@ -31,7 +31,7 @@ public interface ShellDialect { String getExecutableName(); default boolean isCompatibleTo(ShellDialect other) { - return other.equals(this); + return this.equals(other); } String getCatchAllVariable();