fix formatting

This commit is contained in:
James Barnett
2016-11-07 12:21:50 -06:00
parent 259412ecb7
commit f67cdbc5df

View File

@@ -76,10 +76,9 @@ done
if [[ "$disk" == -1 ]]; then
if [[ "$uuid_cmdline" != "none" ]]; then
printf "A device with UUID $uuid_cmdline was not found to be mounted, or it is not a BTRFS device."
printf "A device with UUID $uuid_cmdline was not found to be mounted, or it is not a BTRFS device.\n"
fi
printf "Select a mounted BTRFS device to backup to.\n"
disk=-1
while [[ $disk -lt 0 || $disk -gt $i ]]; do
for x in "${!TARGETS_ARRAY[@]}"; do
printf "%s) %s (%s)\n" "$((x+1))" "${UUIDS_ARRAY[$x]}" "${TARGETS_ARRAY[$x]}"