You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 19, 2026. It is now read-only.
Bug: String comparison for kernel version
File:
scripts/setup.shThe OpenShell prerequisite check compares the Linux kernel version as a string:
Bash's
[[ < ]]operator performs lexicographic (alphabetical) comparison, not numeric comparison. This means:cutoutput5.45.95.136.0Kernels 5.4–5.12 (which don't support Landlock) will not trigger the warning, potentially leading to a broken OpenShell install.
Fix