Skip to content

Commit

Permalink
deactivated version check for osxfuse to support macfuse 4.x
Browse files Browse the repository at this point in the history
  • Loading branch information
tobihagemann committed Dec 2, 2020
1 parent d6a098c commit 366af19
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ public String[] defaultMountFlags() {
*/
@Override
public boolean isApplicable() {
return IS_MAC && Files.exists(Paths.get("/usr/local/lib/libosxfuse.2.dylib")) && installedVersionSupported();
return IS_MAC && Files.exists(Paths.get("/usr/local/lib/libosxfuse.2.dylib")); //
// && installedVersionSupported(); // FIXME: #52
}

public boolean installedVersionSupported() {
Expand Down

0 comments on commit 366af19

Please sign in to comment.