Skip to content

Commit

Permalink
woeusb: Fix mount error (#299) (#300)
Browse files Browse the repository at this point in the history
The fstype_options variable can contain several options, and thus
should not be quoted

Signed-off-by: Chris Halls <[email protected]>
Reviewed-by: 林博仁(Buo-ren, Lin) <[email protected]>
  • Loading branch information
challs authored and brlin-tw committed Jan 27, 2020
1 parent 3f97a16 commit f21bb19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/woeusb
Original file line number Diff line number Diff line change
Expand Up @@ -1367,7 +1367,7 @@ mount_target_filesystem(){

mount \
--options "${mount_options}" \
"${fstype_options}" \
${fstype_options} \
"${target_partition}" \
"${target_fs_mountpoint}" \
|| (
Expand Down

0 comments on commit f21bb19

Please sign in to comment.