Commit 8ce12d61 authored by Mario Trangoni's avatar Mario Trangoni

shellcheck: Fix SC2061 issue

$ find . -name "*.sh" | xargs shellcheck -i SC2061 In ./roll-tarballs.sh line 159: find nx-X11/extras/Mesa/ -name Makefile.* | while read -r file; do rm "$file"; done ^--------^ SC2061: Quote the parameter to -name so the shell won't interpret it. For more information: https://www.shellcheck.net/wiki/SC2061 -- Quote the parameter to -name so t... Signed-off-by: 's avatarMario Trangoni <mjtrangoni@gmail.com>
parent 407651b3
...@@ -156,7 +156,7 @@ if [ "x$MODE" = "xfull" ]; then ...@@ -156,7 +156,7 @@ if [ "x$MODE" = "xfull" ]; then
rm -f "nx-X11/extras/Mesa/src/mesa/main/"{mesa.def,Imakefile,vsnprintf.c} rm -f "nx-X11/extras/Mesa/src/mesa/main/"{mesa.def,Imakefile,vsnprintf.c}
find nx-X11/extras/Mesa/ -name Makefile | while read -r file; do rm "$file"; done find nx-X11/extras/Mesa/ -name Makefile | while read -r file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name Makefile.* | while read -r file; do rm "$file"; done find nx-X11/extras/Mesa/ -name 'Makefile.*' | while read -r file; do rm "$file"; done
find nx-X11/extras/Mesa/ -name descrip.mms | while read -r file; do rm "$file"; done find nx-X11/extras/Mesa/ -name descrip.mms | while read -r file; do rm "$file"; done
# this is for 3.5.0.x only... # this is for 3.5.0.x only...
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment