Skip to content

Commit

Permalink
Mac OS Big Sur (11.x) compliance
Browse files Browse the repository at this point in the history
  • Loading branch information
Plopix committed Nov 25, 2020
1 parent e80ab2b commit 99f1cd7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ function MacOSPatherize(string $path): string
$parts = explode('.', $output[0]);
$major = (int) $parts[0];
$minor = (int) $parts[1];
$isCatalina = ($major >= 10) && ($minor >= 15);
$isCatalina = (($major >= 10) && ($minor >= 15)) || ($major >= 11);
} else {
$isCatalina = false;
}
Expand Down

0 comments on commit 99f1cd7

Please sign in to comment.