From 5a274d39e13b9c5694b5374f62c194ccea97ca9c Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 8 Feb 2024 05:28:11 +0100 Subject: [PATCH] Fix outdated partition scripts --- profiles/DerGeret/Arch/partition.sh | 2 +- profiles/DerGeret/Arch/setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/profiles/DerGeret/Arch/partition.sh b/profiles/DerGeret/Arch/partition.sh index 342849f2..bbaec29d 100755 --- a/profiles/DerGeret/Arch/partition.sh +++ b/profiles/DerGeret/Arch/partition.sh @@ -25,4 +25,4 @@ echo "23"; echo "w"; -} | fdisk "$ARCH_DISK"; +} | fdisk "$OS_DISK"; diff --git a/profiles/DerGeret/Arch/setup.sh b/profiles/DerGeret/Arch/setup.sh index 1a1d9d63..f39d0b0f 100755 --- a/profiles/DerGeret/Arch/setup.sh +++ b/profiles/DerGeret/Arch/setup.sh @@ -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"; }