diff options
| author | Chris Titus <[email protected]> | 2021-10-21 17:16:20 -0500 |
|---|---|---|
| committer | Chris Titus <[email protected]> | 2021-10-21 17:16:20 -0500 |
| commit | 7956fe0c3b2cfcd493a2c61eac5ce33b3288eddc (patch) | |
| tree | 3e91ae1b6a8abae37a56c8b1dc76cbac92c7bf2b | |
| parent | f81c62f99e7cd8ef4215f12774c64a3bd93cd56b (diff) | |
| download | ArchTitus-7956fe0c3b2cfcd493a2c61eac5ce33b3288eddc.tar.xz ArchTitus-7956fe0c3b2cfcd493a2c61eac5ce33b3288eddc.zip | |
nvme fix#2
| -rwxr-xr-x | 0-preinstall.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/0-preinstall.sh b/0-preinstall.sh index b879d0d..af3fc83 100755 --- a/0-preinstall.sh +++ b/0-preinstall.sh @@ -66,7 +66,7 @@ sgdisk -c 2:"ROOT" ${DISK} # make filesystems echo -e "\nCreating Filesystems...\n$HR" -if [[ "${DISK}" == "nvme"* ]]; then +if [[ ${DISK} =~ "nvme" ]]; then mkfs.vfat -F32 -n "UEFISYS" "${DISK}p1" mkfs.btrfs -L "ROOT" "${DISK}p2" mount -t btrfs "${DISK}p2" /mnt |
