]> git.ipfire.org Git - thirdparty/dracut.git/commitdiff
fix(fs-lib): remove quoting form the first argument of the e2fsck call
authorLaszlo Gombos <laszlo.gombos@gmail.com>
Sat, 4 Mar 2023 23:28:17 +0000 (23:28 +0000)
committerLaszlo Gombos <laszlo.gombos@gmail.com>
Mon, 26 Jun 2023 13:39:48 +0000 (09:39 -0400)
Fix regression.

modules.d/99fs-lib/fs-lib.sh

index dd20731f29a68e1f913314bfc574bab99e351515..c4640fa8a4d9dbe5d1fac962391f2b4a9fe5d5bf 100755 (executable)
@@ -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