aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/install.sh b/install.sh
index 729e6d8..443f465 100755
--- a/install.sh
+++ b/install.sh
@@ -35,8 +35,8 @@ if [ ! -e installed ]; then
mkfs.ext4 /dev/Crypt/root
mount /dev/Crypt/root /mnt
- mkdir /mnt/efi
- mount ${PART}1 /mnt/efi
+ mkdir /mnt/boot
+ mount ${PART}1 /mnt/boot
swapon /dev/Crypt/swap
pacstrap /mnt base || exit 1
@@ -47,7 +47,7 @@ if [ ! -e installed ]; then
else
cryptsetup open ${PART}2 cryptlvm
mount /dev/Crypt/root /mnt
- mount ${PART}1 /mnt/efi
+ mount ${PART}1 /mnt/boot
fi
sudo install -d /mnt/root/dotfiles
cp -r . /mnt/root/dotfiles