package/google-breakpad/gen-syms.sh: fix shellcheck warnings

Fixes warning SC2068

Signed-off-by: Adam Duskett <adam.duskett@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Adam Duskett 2023-12-02 21:18:34 -07:00 committed by Thomas Petazzoni
parent d8ac52108c
commit f1089391a8

View File

@ -14,7 +14,7 @@ error() {
exit 1
}
for FILE in ${@}; do
for FILE in "${@}"; do
f="${TARGET_DIR}${FILE}"
if [ ! -e "${f}" ]; then
error "%s: No such file or directory\n" "${FILE}"