aboutsummaryrefslogtreecommitdiff
path: root/crn/packages/patches/woeusb-ntfs.patch
blob: 615df0caf79c0bfc170fb4ac989bada4a2909d6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/WoeUSB/core.py b/src/WoeUSB/core.py
index 1392b2f..a394f93 100644
--- a/src/WoeUSB/core.py
+++ b/src/WoeUSB/core.py
@@ -435,6 +435,8 @@ def mount_target_filesystem(target_partition, target_fs_mountpoint):
         return 1

     if subprocess.run(["mount",
+                       "-t", "ntfs3",
+                       "-o", "rw",
                        target_partition,
                        target_fs_mountpoint]).returncode != 0:
         utils.print_with_color(_("Error: Unable to mount target media"), "red")