From: Laszlo Gombos Date: Sat, 4 Mar 2023 23:28:17 +0000 (+0000) Subject: fix(fs-lib): remove quoting form the first argument of the e2fsck call X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9aa332cad7196b6e05b9e2f1810dc54bb38ed2ac;p=thirdparty%2Fdracut.git fix(fs-lib): remove quoting form the first argument of the e2fsck call Fix regression. --- diff --git a/modules.d/99fs-lib/fs-lib.sh b/modules.d/99fs-lib/fs-lib.sh index dd20731f2..c4640fa8a 100755 --- a/modules.d/99fs-lib/fs-lib.sh +++ b/modules.d/99fs-lib/fs-lib.sh @@ -107,7 +107,8 @@ fsck_drv_com() { info "issuing $_drv $_fop $_dev" # we enforce non-interactive run, so $() is fine - _out=$($_drv "$_fop" "$_dev") + # shellcheck disable=SC2086 + _out=$($_drv $_fop "$_dev") _ret=$? fsck_tail