We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6ecd639 + e911bd6 commit 050bca0Copy full SHA for 050bca0
dracut/modules.d/90kiwi-dump/kiwi-dump-image.sh
@@ -54,8 +54,8 @@ function sort_disk_entries {
54
fi
55
count=$((count + 1))
56
done
57
- readarray -td '' list_items_sorted \
58
- < <(printf '%s\0' "${device_array[@]}" | sort -z)
+ printf '%s\0' "${device_array[@]}" | sort -z > list_items_sorted.txt
+ readarray -td '' list_items_sorted < list_items_sorted.txt
59
echo "${list_items_sorted[*]}"
60
}
61
0 commit comments