From 60019b84f278e962b60d8596c0662623a0eaf1bf Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Mon, 7 Aug 2023 20:50:05 +0200 Subject: [PATCH] Specify type of windows mount --- profiles/DerGeret/Arch/setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/profiles/DerGeret/Arch/setup.sh b/profiles/DerGeret/Arch/setup.sh index 0812660a..eb8cdee7 100755 --- a/profiles/DerGeret/Arch/setup.sh +++ b/profiles/DerGeret/Arch/setup.sh @@ -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)" \