diff options
author | Jesús <heckyel@hyperbola.info> | 2022-05-25 01:38:39 +0800 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2022-05-25 01:38:39 +0800 |
commit | e7472b9276371210a7f549f8e077e8993d5699e6 (patch) | |
tree | 3168200ea33a76e192731e8e8d0b73c305ddd0b4 | |
parent | e451619c3798d1edebc23dcb862e0f3a862ec886 (diff) | |
download | hyperfi-e7472b9276371210a7f549f8e077e8993d5699e6.tar.lz hyperfi-e7472b9276371210a7f549f8e077e8993d5699e6.tar.xz hyperfi-e7472b9276371210a7f549f8e077e8993d5699e6.zip |
Disable SC2086 because pacstrap not work with ""
-rw-r--r-- | hyperfi | 9 |
1 files changed, 6 insertions, 3 deletions
@@ -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 |