Fix outdated partition scripts

This commit is contained in:
Manuel Thalmann 2024-02-08 05:28:11 +01:00
parent 962e540116
commit 5a274d39e1
2 changed files with 2 additions and 2 deletions

View file

@ -25,4 +25,4 @@
echo "23";
echo "w";
} | fdisk "$ARCH_DISK";
} | fdisk "$OS_DISK";

View file

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