From e7472b9276371210a7f549f8e077e8993d5699e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jes=C3=BAs?= Date: Wed, 25 May 2022 01:38:39 +0800 Subject: [PATCH] Disable SC2086 because pacstrap not work with "" --- hyperfi | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/hyperfi b/hyperfi index 7a82d77..0d67457 100644 --- a/hyperfi +++ b/hyperfi @@ -878,7 +878,8 @@ installbase(){ clear echo "pacstrap /mnt ${pkgs}" - pacstrap /mnt "${pkgs}" + # shellcheck disable=SC2086 + pacstrap /mnt ${pkgs} pressanykey } @@ -1520,7 +1521,8 @@ archsyslinuxinstall(){ fi echo "pacstrap /mnt syslinux ${additionalpkg}" - pacstrap /mnt syslinux "${additionalpkg}" + # shellcheck disable=SC2086 + pacstrap /mnt syslinux ${additionalpkg} pressanykey clear @@ -1647,7 +1649,8 @@ archextrasmenu(){ done clear echo "pacstrap /mnt ${pkgs}" - pacstrap /mnt "${pkgs}" + # shellcheck disable=SC2086 + pacstrap /mnt ${pkgs} if [[ "${pkgs}" == *"dhcpcd"* ]]; then archchroot enabledhcpcd fi