Shifted back to string return

This commit is contained in:
Price Hiller 2021-11-25 01:46:21 -06:00
parent c0b85ec0fd
commit e46c7358b5

View File

@ -1,9 +1,5 @@
#!/bin/bash #!/bin/bash
#!/bin/bash
### GLOBALS ###
declare -A DISKS
### GLOBALS ###
echo_rgb() { echo_rgb() {
# Echo a colored string to the terminal based on rgb values # Echo a colored string to the terminal based on rgb values
@ -128,20 +124,15 @@ get_available_disks() {
done <<< "$(lsblk)" done <<< "$(lsblk)"
local ret_val
# Build the array into a string, yes this is less efficient, but easier to modify in the future if something changes # Build the array into a string, yes this is less efficient, but easier to modify in the future if something changes
local disk_num
disk_num=0
for disk in "${available_disks[@]}"; do for disk in "${available_disks[@]}"; do
DISKS["${disk_num}"]+="${disk}"
ret_val="${ret_val} ${disk}" ret_val="${ret_val} ${disk}"
done done
echo "${ret_val}"
} }
#choose_disk() {
#
#}
install() { install() {
local available_disks local available_disks
@ -150,8 +141,8 @@ install() {
available_disks="$(get_available_disks)" available_disks="$(get_available_disks)"
log "info" "Available disks: " log "info" "Available disks: "
for disk in "${!DISKS[@]}"; do for disk in "${available_disks[@]}"; do
echo " - $(important "${DISKS[disk]}")" echo "- $(important "${disk}")"
done done
} }