diff options
Diffstat (limited to 'functions/defaults.sh')
-rwxr-xr-x | functions/defaults.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/functions/defaults.sh b/functions/defaults.sh index f1bb85dce..85efca7df 100755 --- a/functions/defaults.sh +++ b/functions/defaults.sh @@ -381,8 +381,9 @@ Set_config_defaults () ;; esac fi + LB_BOOTLOADERS="$(echo "${LB_BOOTLOADERS}" | tr "," " ")" - LB_FIRST_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk -F, '{ print $1 }') + LB_FIRST_BOOTLOADER=$(echo "${LB_BOOTLOADERS}" | awk '{ print $1 }') # Setting checksums LB_CHECKSUMS="${LB_CHECKSUMS:-sha256}" |