From cac6eee5e81166b0befaa9254c89be05082163a2 Mon Sep 17 00:00:00 2001 From: HikariKnight <2557889+HikariKnight@users.noreply.github.com> Date: Sat, 12 Mar 2022 17:53:46 +0100 Subject: [PATCH] send the if conditions for "which kernelstub" and "which grub-mkconfig" to null --- lib/set_CMDLINE.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/set_CMDLINE.sh b/lib/set_CMDLINE.sh index 9a53365..24604cb 100755 --- a/lib/set_CMDLINE.sh +++ b/lib/set_CMDLINE.sh @@ -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