Skip to content

Commit

Permalink
PackageInfo.g: fix AvailabilityTest return value
Browse files Browse the repository at this point in the history
  • Loading branch information
fingolfin committed Nov 7, 2024
1 parent d4671de commit b44523b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions PackageInfo.g
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ Dependencies := rec(
AvailabilityTest := function()
if not IsKernelExtensionAvailable("ferret") then
LogPackageLoadingMessage(PACKAGE_WARNING,
["the kernel module is not compiled, ",
["the kernel module is not compiled, ",
"the package cannot be loaded."]);
return fail;
return false;
fi;
return true;
end,
Expand Down

0 comments on commit b44523b

Please sign in to comment.