diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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 |