disable 2 shellcheck warnings

This commit is contained in:
Tobias Powalowski 2022-03-21 12:51:56 +01:00
parent d6d21178d1
commit 905a8bba99
2 changed files with 2 additions and 0 deletions

View file

@ -126,6 +126,7 @@ _umount_special() {
_install_base_packages() {
echo "Installing packages ${_PACKAGES} to ${1} ..."
#shellcheck disable=SC2086
pacman --root "${1}" -Sy ${_PACKAGES} --config "${_PACMAN_CONF}" --ignore systemd-resolvconf --noconfirm --cachedir "${_CACHEDIR}" >/dev/null 2>&1
}

View file

@ -19,6 +19,7 @@ _cachedir_check() {
_download_packages() {
echo "Downloading packages ${_PACKAGES} and ${_ARCHBOOT} to ${1} ..."
#shellcheck disable=SC2086
pacman --root "${1}" -Syw ${_PACKAGES} ${_ARCHBOOT} --ignore systemd-resolvconf --noconfirm --cachedir "${_CACHEDIR}" >/dev/null 2>&1
}