Skip to content

Commit

Permalink
Revert "Fix newline in UI"
Browse files Browse the repository at this point in the history
This reverts commit bc755b3.

Unless you want to have empty lines in between devices, only one '\n' is necessary.
  • Loading branch information
vitamins committed Mar 23, 2014
1 parent 297c139 commit 6fb65a9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bashmount
Expand Up @@ -485,11 +485,12 @@ list_devices() {
printf '%s' " ${GREEN}[mounted]${ALL_OFF}"
mounted[${#mounted[*]}]="${devname}"
fi
printf '\n\n'
printf '\n'
done
fi
# List removable media.
if (( show_removable )) && (( ${#removable[*]} )); then
printf '\n'
print_separator_removable
for devname in ${removable[@]}; do
info_label="$(info_fslabel "${devname}")"
Expand Down

0 comments on commit 6fb65a9

Please sign in to comment.