send the if conditions for "which kernelstub" and "which grub-mkconfig" to null

This commit is contained in:
HikariKnight 2022-03-12 17:53:46 +01:00
parent fcadf14b2a
commit cac6eee5e8
No known key found for this signature in database
GPG key ID: E8B239063B022F5A

View file

@ -150,7 +150,7 @@ function set_CMDLINE () {
BOOTLOADER_AUTOCONFIG=0
# If kernelstub is detected (program to manage systemd-boot)
if which kernelstub ;
if which kernelstub > /dev/null ;
then
# Configure kernelstub
set_KERNELSTUB
@ -158,7 +158,7 @@ function set_CMDLINE () {
fi
# If grub exists
if which grub-mkconfig ;
if which grub-mkconfig > /dev/null ;
then
# Configure grub
set_GRUB