Skip to content

Commit

Permalink
Merge pull request #356 from nextcloud/bugfix/355
Browse files Browse the repository at this point in the history
fix: Fix os detection
  • Loading branch information
icewind1991 authored Nov 9, 2023
2 parents b8a93ad + a923717 commit bf1c261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/BinaryFinder.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function getArch(): string {
if (strpos($arch, 'aarch64') === 0) {
return 'aarch64';
}
if (strpos($os, 'FreeBSD') == 0) {
if (strpos($os, 'FreeBSD') === 0) {
$arch = 'fbsd_' . $arch;
}
return $arch;
Expand Down

0 comments on commit bf1c261

Please sign in to comment.