mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
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>
(cherry picked from commit f1089391a8)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
9519bde956
commit
3b5860f271
@@ -14,7 +14,7 @@ error() {
|
|||||||
exit 1
|
exit 1
|
||||||
}
|
}
|
||||||
|
|
||||||
for FILE in ${@}; do
|
for FILE in "${@}"; do
|
||||||
f="${TARGET_DIR}${FILE}"
|
f="${TARGET_DIR}${FILE}"
|
||||||
if [ ! -e "${f}" ]; then
|
if [ ! -e "${f}" ]; then
|
||||||
error "%s: No such file or directory\n" "${FILE}"
|
error "%s: No such file or directory\n" "${FILE}"
|
||||||
|
|||||||
Reference in New Issue
Block a user