board/sifive/hifive-unleashed: fix shellcheck warning in post-build.sh

This removes a warning reported by shellcheck: "Double quote to prevent
globbing and word splitting". As a result, the file can be removed from
.checkpackageignore.

Signed-off-by: Francois Dugast <francois.dugast.foss@gmail.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
This commit is contained in:
Francois Dugast
2025-03-28 20:57:38 +01:00
committed by Julien Olivain
parent 15f15cfe01
commit 185c0ba4b9
2 changed files with 1 additions and 2 deletions

View File

@@ -1,2 +1,2 @@
#!/bin/sh
cp $BINARIES_DIR/boot.scr $TARGET_DIR/boot/boot.scr
cp "$BINARIES_DIR/boot.scr" "$TARGET_DIR/boot/boot.scr"