diff --git a/pkg/de-p1st-installer/PKGBUILD b/pkg/de-p1st-installer/PKGBUILD index 446bdd8..61044b4 100644 --- a/pkg/de-p1st-installer/PKGBUILD +++ b/pkg/de-p1st-installer/PKGBUILD @@ -2,7 +2,7 @@ _pkgname=installer _reponame=arch pkgname="de-p1st-$_pkgname" -pkgver=0.1.1 +pkgver=0.1.2 pkgrel=1 pkgdesc="Bash script to install Arch Linux" arch=('any') diff --git a/pkg/de-p1st-installer/de-p1st-installer.sh b/pkg/de-p1st-installer/de-p1st-installer.sh index 0b93848..0332f0a 100755 --- a/pkg/de-p1st-installer/de-p1st-installer.sh +++ b/pkg/de-p1st-installer/de-p1st-installer.sh @@ -140,7 +140,7 @@ function run_pacstrap() { case "${BIOS_TYPE}" in uefi) - PKGS+=('de-p1st-base-efi') + PKGS+=('de-p1st-base') ;; bios) echo "Not yet implemented" diff --git a/pkg/de-p1st-installer/lib/util.sh b/pkg/de-p1st-installer/lib/util.sh index 7eb55c0..be30e3b 100644 --- a/pkg/de-p1st-installer/lib/util.sh +++ b/pkg/de-p1st-installer/lib/util.sh @@ -60,7 +60,7 @@ function get_cpu_vendor() { if [[ -z "${CPU_VENDOR}" ]] || [[ "${CPU_VENDOR}" == "autodetect" ]]; then # If run virtual environment (e.g. VirtualBox) then no CPU microcode is required - if cat /proc/cpuinfo | grep '^flags.*hypervisor'; then + if cat /proc/cpuinfo | grep '^flags.*hypervisor' >/dev/null; then echo "Detected virtual environment." CPU_VENDOR="none"