summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2024-03-28 17:37:27 +0000
committerBlake Romero <blake@blkrom.com>2024-03-28 17:37:27 +0000
commita80a158eda9d1d4396e65187518a2f74439e7d21 (patch)
treeaca1b7e24bf4df09f8fc0a790b08a427132e1e12
parentcbb8f08bab60ae0a0b0def6ff4f08b0d61715b7e (diff)
Fix btrfs formatting
-rwxr-xr-xinstall-artix.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/install-artix.sh b/install-artix.sh
index 8457713..47031e2 100755
--- a/install-artix.sh
+++ b/install-artix.sh
@@ -5,7 +5,7 @@
# CONFIGURATION
# ======================================================
# Drive
-drive=/dev/DRIVE
+drive="/dev/DRIVE"
boot="${drive}1"
swap="${drive}2"
root="${drive}3"
@@ -126,7 +126,7 @@ else
fi
# Make BTRFS ROOT filesystem
-mkfs.btrfs -qL ROOT "${root}"
+mkfs.btrfs -qfL ROOT "${root}"
# Mount btrfs ROOT drive
mount "${root}" /mnt