From f21bb19e6aa575682b84c4e909e6509b04aa58e2 Mon Sep 17 00:00:00 2001 From: Chris Halls Date: Mon, 27 Jan 2020 14:18:04 +0100 Subject: [PATCH] woeusb: Fix mount error (#299) (#300) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The fstype_options variable can contain several options, and thus should not be quoted Signed-off-by: Chris Halls Reviewed-by: ๆž—ๅšไป(Buo-ren, Lin) --- src/woeusb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/woeusb b/src/woeusb index 71466f5..8cb292c 100755 --- a/src/woeusb +++ b/src/woeusb @@ -1367,7 +1367,7 @@ mount_target_filesystem(){ mount \ --options "${mount_options}" \ - "${fstype_options}" \ + ${fstype_options} \ "${target_partition}" \ "${target_fs_mountpoint}" \ || (