diff options
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/bootloaders.sh | 4 | ||||
-rwxr-xr-x | functions/defaults.sh | 3 |
2 files changed, 2 insertions, 5 deletions
diff --git a/functions/bootloaders.sh b/functions/bootloaders.sh index 14e50ac4c..a6883a67f 100755 --- a/functions/bootloaders.sh +++ b/functions/bootloaders.sh @@ -10,16 +10,12 @@ Is_Requested_Bootloader () { - local OLDIFS="$IFS" - local IFS="," local BOOTLOADER for BOOTLOADER in ${LB_BOOTLOADERS}; do if [ "${BOOTLOADER}" = "${1}" ]; then - IFS="$OLDIFS" return 0 fi done - IFS="$OLDIFS" return 1 } 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}" |