From 7ee8dfca6ad97efd545271fbc31852d5c37755fc Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 31 Mar 2021 09:31:34 +0200 Subject: [PATCH] fix(examples/yocto): shellcheck again --- examples/yocto/postinst-intercepts/execute_dracut | 1 + 1 file changed, 1 insertion(+) diff --git a/examples/yocto/postinst-intercepts/execute_dracut b/examples/yocto/postinst-intercepts/execute_dracut index 3893031e..f2dd058d 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"