Specify type of windows mount

This commit is contained in:
Manuel Thalmann 2023-08-07 20:50:05 +02:00
parent 9c2a2175d6
commit 61881cac87

View file

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