Commit 3eb43d1c authored by Juan Batiz-Benet's avatar Juan Batiz-Benet

mount: darwin osx fuse check fix

committed my test case accidentally :(
parent 7972f3a7
......@@ -23,7 +23,7 @@ func darwinFuseCheckVersion() error {
return err
}
if !strings.HasPrefix(ov, "2.7.") || strings.HasPrefix(ov, "2.8.") {
if strings.HasPrefix(ov, "2.7.") || strings.HasPrefix(ov, "2.8.") {
return nil
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment