File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -167,6 +167,8 @@ echoerr() {
167
167
echo " $@ " 1>&2
168
168
}
169
169
log_prefix () {
170
+ # Invoked indirectly
171
+ # shellcheck disable=SC2317
170
172
echo " $0 "
171
173
}
172
174
_logp=6
@@ -230,7 +232,7 @@ uname_arch() {
230
232
armv6* ) arch=" armv6" ;;
231
233
armv7* ) arch=" armv7" ;;
232
234
esac
233
- echo ${arch}
235
+ echo " ${arch} "
234
236
}
235
237
uname_os_check () {
236
238
os=$( uname_os)
Original file line number Diff line number Diff line change 73
73
74
74
echo " Running shellcheck..."
75
75
cd " ${ROOT_PATH} " || exit
76
- IGNORE_FILES=$( find . -name " *.sh" | grep " tilt_modules" )
76
+ IGNORE_FILES=$( find . -name " *.sh" | { grep " tilt_modules" || true ; } )
77
77
echo " Ignoring shellcheck on ${IGNORE_FILES} "
78
78
FILES=$( find . -name " *.sh" -not -path " ./tilt_modules/*" )
79
79
while read -r file; do
You can’t perform that action at this time.
0 commit comments