From cde6508ac5f2cdbf08fc06071f2befa12e25a5be Mon Sep 17 00:00:00 2001 From: Matt Ludwigs Date: Mon, 2 Sep 2019 14:43:25 -0700 Subject: [PATCH] Fix mksyslinuxfs shellcheck warnings --- scripts/mksyslinuxfs.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/mksyslinuxfs.sh b/scripts/mksyslinuxfs.sh index 5f6e9d52..dc7919d5 100755 --- a/scripts/mksyslinuxfs.sh +++ b/scripts/mksyslinuxfs.sh @@ -34,8 +34,8 @@ if [[ ! -f $SYSLINUX ]]; then fi # Create the boot partition and run it through syslinux -rm -f $BOOTPART -dd if=/dev/zero of=$BOOTPART count=0 seek=$BOOTSIZE 2>/dev/null -$MKFS_VFAT -F 12 -n BOOT $BOOTPART >/dev/null -$SYSLINUX -i $BOOTPART +rm -f "$BOOTPART" +dd if=/dev/zero of="$BOOTPART" count=0 seek="$BOOTSIZE" 2>/dev/null +"$MKFS_VFAT" -F 12 -n BOOT "$BOOTPART" >/dev/null +"$SYSLINUX" -i "$BOOTPART"