shellcheck fixes

This commit is contained in:
Tobias Powalowski 2024-09-08 22:41:25 +02:00
parent 74efa02b7d
commit fd36bf73fc
3 changed files with 5 additions and 1 deletions

View file

@ -60,6 +60,7 @@ if [[ -n "${_G_RELEASE}" ]]; then
clear
fi
# install custom xorg or wayland
#shellcheck disable=SC2128
if [[ -n "${_CUSTOM_X}" || -n "${_CUSTOM_WAYLAND}" ]]; then
_custom_wayland_xorg
fi

View file

@ -42,9 +42,11 @@ _linux_firmware() {
_marvell_firmware() {
_MARVELL=()
for i in $(fd -t f . /lib/modules/"${_RUNNING_KERNEL}" | rg -w 'wireless/marvell'); do
#shellcheck disable=SC2207
_MARVELL+=($(basename "${i}" | sd '.ko.*$' ''))
done
# check marvell modules if already loaded
#shellcheck disable=SC2068
for i in ${_MARVELL[@]}; do
if lsmod | rg -qw "${i}"; then
_PACKAGES+=(linux-firmware-marvell)

View file

@ -35,7 +35,8 @@ _run_pacman() {
}
_update_packages() {
_IGNORE=()
_IGNORE=()
#shellcheck disable=SC2128
if [[ -n "${_GRAPHIC_IGNORE}" ]]; then
#shellcheck disable=SC2068
for i in ${_GRAPHIC_IGNORE[@]}; do