Force the mounting of NTFS drives

This commit is contained in:
Manuel Thalmann 2023-08-10 20:02:38 +02:00
parent f3d71b8e54
commit ea97d2ebbd

View file

@ -4,7 +4,7 @@ pushd "${BASH_SOURCE%/*}" > /dev/null;
extraMounts()
{
disks=($(bash -c "echo $ARCH_DISK*"));
mount --mkdir -t ntfs3 "${disks[-1]}" "$ARCH_MOUNT_ROOT/mnt/win";
mount --mkdir -o force -t ntfs3 "${disks[-1]}" "$ARCH_MOUNT_ROOT/mnt/win";
}
PARTITION_SCRIPT="$(realpath ./partition.sh)" \