Skip to content

Commit aa3fd98

Browse files
committed
build_matrix.sh: Fix a shellcheck note
The note was: Double quote to prevent globbing and word splitting. [SC2086] [skip ci]
1 parent 88bf03d commit aa3fd98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_matrix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ build_tcpdump() {
4949
export CRYPTO
5050
for SMB in $MATRIX_SMB; do
5151
export SMB
52-
COUNT=`increment $COUNT`
52+
COUNT=`increment "$COUNT"`
5353
echo_magenta "===== SETUP $COUNT: BUILD_LIBPCAP=$BUILD_LIBPCAP REMOTE=${REMOTE:-?} CC=$CC CMAKE=$CMAKE CRYPTO=$CRYPTO SMB=$SMB =====" >&2
5454
# Run one build with setup environment variables:
5555
# BUILD_LIBPCAP, REMOTE, CC, CMAKE, CRYPTO and SMB

0 commit comments

Comments
 (0)