mount fix
This commit is contained in:
parent
06e2feebb1
commit
dafffb1c73
1 changed files with 7 additions and 3 deletions
|
@ -45,7 +45,11 @@ if [ -z "$usbdrives" ]; then
|
||||||
mountandroid
|
mountandroid
|
||||||
else
|
else
|
||||||
echo "USB drive(s) detected."
|
echo "USB drive(s) detected."
|
||||||
[ -z "$anddrives" ] && echo "USB drive detected." && mountusb
|
if [ -z "$anddrives" ]; then
|
||||||
|
echo "USB drive detected."
|
||||||
|
mountusb
|
||||||
|
else
|
||||||
echo "Mountable USB drive(s) and Android device(s) detected."
|
echo "Mountable USB drive(s) and Android device(s) detected."
|
||||||
asktype
|
asktype
|
||||||
fi
|
fi
|
||||||
|
fi
|
||||||
|
|
Loading…
Reference in a new issue