File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -823,8 +823,8 @@ make_efi() {
823823 install -d -m 0755 -- " ${isofs_dir} /loader/entries"
824824 sed " s|%ARCH%|${arch} |g;" " ${script_path} /efiboot/${_use_config_name} /loader.conf" > " ${isofs_dir} /loader/loader.conf"
825825
826- readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-usb*.conf" -printf " %f" | grep -v " rescue" )
827- [[ " ${norescue_entry} " = false ]] && readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-usb*rescue*.conf" -printf " %f" )
826+ readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-usb*.conf" -printf " %f\n " | grep -v " rescue" )
827+ [[ " ${norescue_entry} " = false ]] && readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-usb*rescue*.conf" -printf " %f\n " )
828828
829829 for _efi_config in " ${_efi_config_list[@]} " ; do
830830 sed " s|%ARCHISO_LABEL%|${iso_label} |g;
@@ -880,8 +880,8 @@ make_efiboot() {
880880
881881 find " ${isofs_dir} /loader/entries/" -maxdepth 1 -mindepth 1 -name " uefi-shell*" -type f -printf " %p\0" | xargs -0 -I{} cp {} " ${build_dir} /efiboot/loader/entries/"
882882
883- readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-cd*.conf" -printf " %f" | grep -v " rescue" )
884- [[ " ${norescue_entry} " = false ]] && readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-cd*rescue*.conf" -printf " %f" )
883+ readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-cd*.conf" -printf " %f\n " | grep -v " rescue" )
884+ [[ " ${norescue_entry} " = false ]] && readarray -t _efi_config_list < <( find " ${script_path} /efiboot/${_use_config_name} /" -mindepth 1 -maxdepth 1 -type f -name " archiso-cd*rescue*.conf" -printf " %f\n " )
885885
886886 for _efi_config in " ${_efi_config_list[@]} " ; do
887887 sed " s|%ARCHISO_LABEL%|${iso_label} |g;
You can’t perform that action at this time.
0 commit comments