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
Alabaster currently fails to detect Arch Linux installs using the realtime kernel. The syntax is also thorny, as it should be using -- to terminate flag parsing before trying to grep for the string -arch. Use the following check instead:
if uname -a | grep -q -- '-arch'|| uname -a | grep -q -- '-rt';then
The text was updated successfully, but these errors were encountered:
Alabaster currently fails to detect Arch Linux installs using the realtime kernel. The syntax is also thorny, as it should be using
--
to terminate flag parsing before trying to grep for the string-arch
. Use the following check instead:The text was updated successfully, but these errors were encountered: