From dafffb1c73226f4d694ca4cb9f677cd37d3536c5 Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Tue, 23 Oct 2018 10:47:14 -0400 Subject: [PATCH] mount fix --- .scripts/dmenumount | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.scripts/dmenumount b/.scripts/dmenumount index 1aadf01..17f0eb2 100755 --- a/.scripts/dmenumount +++ b/.scripts/dmenumount @@ -45,7 +45,11 @@ if [ -z "$usbdrives" ]; then mountandroid else echo "USB drive(s) detected." - [ -z "$anddrives" ] && echo "USB drive detected." && mountusb - echo "Mountable USB drive(s) and Android device(s) detected." - asktype + if [ -z "$anddrives" ]; then + echo "USB drive detected." + mountusb + else + echo "Mountable USB drive(s) and Android device(s) detected." + asktype + fi fi