From: Harald Hoyer Date: Wed, 31 Mar 2021 07:31:34 +0000 (+0200) Subject: fix(examples/yocto): shellcheck again X-Git-Tag: 054~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7ee8dfca6ad97efd545271fbc31852d5c37755fc;p=thirdparty%2Fdracut.git fix(examples/yocto): shellcheck again --- diff --git a/examples/yocto/postinst-intercepts/execute_dracut b/examples/yocto/postinst-intercepts/execute_dracut index 3893031e1..f2dd058dc 100755 --- a/examples/yocto/postinst-intercepts/execute_dracut +++ b/examples/yocto/postinst-intercepts/execute_dracut @@ -40,5 +40,6 @@ echo "$(date) - RUNNING: depmod -b $D -a $MY_KERNEL_VERSION" depmod -b "$D" -a "$MY_KERNEL_VERSION" echo "dracut: $(dracut --sysroot "$D" --help | grep 'Version:')" echo "$(date) - RUNNING: dracut -f --sysroot $D --tmpdir $DRACUT_TMPDIR $DRACUT_OPTS $DEBUGOPTS -k $D/lib/modules/$MY_KERNEL_VERSION $D/boot/initramfs.img $MY_KERNEL_VERSION" +# shellcheck disable=SC2086 dracut -f --sysroot "$D" --tmpdir "$DRACUT_TMPDIR" $DRACUT_OPTS $DEBUGOPTS -k "$D"/lib/modules/"$MY_KERNEL_VERSION" "$D"/boot/initramfs.img "$MY_KERNEL_VERSION" echo "$(date) - DONE: dracut"