Ver Fonte

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 f1089391a83aa63b6977e65970451365f10dc66a)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Adam Duskett há 1 ano atrás
pai
commit
731d17da87
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      package/google-breakpad/gen-syms.sh

+ 1 - 1
package/google-breakpad/gen-syms.sh

@@ -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}"