From cd637c715c6ecc972c7e5e4c1f4914709b6f8248 Mon Sep 17 00:00:00 2001 From: Jaromir Dvoracek Date: Fri, 8 May 2015 18:44:50 +0200 Subject: [PATCH] fix: mount -o loop needs type param --- src/winusb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/winusb b/src/winusb index 0290bf5..5ba0ae0 100755 --- a/src/winusb +++ b/src/winusb @@ -362,7 +362,7 @@ trap "exitUmountIso '$isoMountPath' '$partitionMountPath' 'other signal'" HUP QU echo "Mounting..." mkdir -p "$isoMountPath" if [ -f "$isoPath" ]; then # ISO - mount -o loop "$isoPath" "$isoMountPath" + mount -o loop -t iso9660 "$isoPath" "$isoMountPath" else # Real DVD drive (block) mount "$isoPath" "$isoMountPath" fi