Solved shellcheck hints

This commit is contained in:
2020-05-06 08:59:48 +02:00
parent d76f0114ec
commit ab176c51b2
3 changed files with 9 additions and 8 deletions

View File

@@ -5,11 +5,11 @@ info "Actual mounted devices:"
echo
ls -lasi /dev/ | grep -E "sd|mm"
echo
while [ \! -b "$ifi" ]
while [ ! -b "$ifi" ]
do
info "Please select the correct device."
question "/dev/:"
read device
read -r device
ifi="/dev/$device"
done
while [ "$path" == "" ]