Skip to content

Commit

Permalink
src/winusb: mount_source_and_target_filesystem: Fix unescaped double …
Browse files Browse the repository at this point in the history
…quote in doublequotes

Signed-off-by: 林博仁 <[email protected]>
  • Loading branch information
brlin-tw committed Jun 5, 2017
1 parent 5d89ef9 commit 9f1cf84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/winusb
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ mount_source_and_target_filesystem(){
mkdir\
--parents\
"${source_fs_mountpoint}"\
|| echo_with_color red "${FUNCNAME[0]}: Error: Unable to create "${source_fs_mountpoint}" mountpoint directory"\
|| echo_with_color red "${FUNCNAME[0]}: Error: Unable to create \"${source_fs_mountpoint}\" mountpoint directory"\
&& return 1
if [ -f "${source_media}" ]; then # ${source_media} is an ISO image
mount\
Expand All @@ -397,7 +397,7 @@ mount_source_and_target_filesystem(){
mkdir\
--parents\
"${target_fs_mountpoint}"\
|| echo_with_color red "${FUNCNAME[0]}: Error: Unable to create "${target_fs_mountpoint}" mountpoint directory"\
|| echo_with_color red "${FUNCNAME[0]}: Error: Unable to create \"${target_fs_mountpoint}\" mountpoint directory"\
&& return 1
mount\
"${target_partition}"\
Expand Down

0 comments on commit 9f1cf84

Please sign in to comment.